Exemplo n.º 1
0
 public void Receive(byte[] buf)
 {
     msg.Enqueue(buf);
 }
Exemplo n.º 2
0
 public void Send(Msg m)
 {
     msg.Enqueue(m);
 }
Exemplo n.º 3
0
 public void Send(Msg m)
 {
     sender.WaitCommit();
     msg.Enqueue(m);
     sender.Commit();
 }
Exemplo n.º 4
0
 public void Receive(Msg m)
 {
     msg.Enqueue(m);
 }