本文整理汇总了C#中IPacket.Compile方法的典型用法代码示例。如果您正苦于以下问题:C# IPacket.Compile方法的具体用法?C# IPacket.Compile怎么用?C# IPacket.Compile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IPacket
的用法示例。
在下文中一共展示了IPacket.Compile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Send
public void Send( IPacket p )
{
if ( m_Socket == null || m_BlockAllPackets )
return;
PacketProfile prof = PacketProfile.GetOutgoingProfile( (byte)p.PacketID );
DateTime start = ( prof == null ? DateTime.MinValue : DateTime.UtcNow );
byte[] buffer = p.Compile( m_CompressionEnabled );
if ( buffer != null )
{
if ( buffer.Length <= 0 )
return;
int length = buffer.Length;
if ( m_Encoder != null )
m_Encoder.EncodeOutgoingPacket( this, ref buffer, ref length );
bool shouldBegin = false;
lock ( m_SendQueue )
shouldBegin = ( m_SendQueue.Enqueue( buffer, length ) );
if ( shouldBegin )
{
int sendLength = 0;
byte[] sendBuffer = m_SendQueue.Peek( ref sendLength );
try
{
m_Socket.BeginSend( sendBuffer, 0, sendLength, SocketFlags.None, m_OnSend, null );
m_Sending = true;
//Console.WriteLine( "Send: {0}: Begin send of {1} bytes", this, sendLength );
}
catch (Exception ex)
{
log.Error(ex);
Dispose( false );
}
}
if ( prof != null )
prof.Record( length, DateTime.UtcNow - start );
}
else
{
Dispose();
}
}