SendDelayed() public method

Send packet (asynchronous, delayed queue). This is currently only used for block updates.
public SendDelayed ( Packet packet ) : void
packet Packet
return void
Example #1
0
 public void SendDelayed(Packet packet)
 {
     if (Session != null)
     {
         Session.SendDelayed(packet);
     }
 }