Exemple #1
0
 public override void Dispose()
 {
     InProcServer.ReleaseListener(this.fChannel);
     this.fChannel = null;
 }
Exemple #2
0
 public override void Dispose()
 {
     InProcServer.RemoveRef();
 }
Exemple #3
0
 public override void Dispose()
 {
     InProcServer.RemoveListener(this.fChannel.Name, new Action <object>(this.Callback));
 }
Exemple #4
0
 public InProcReceive(InProcQueue aOwner, string aName)
 {
     this.fMessages = new LinkedList <object>();
     this.fOwner    = aOwner;
     this.fChannel  = InProcServer.AddListener(aName, new Action <object>(this.Callback));
 }
Exemple #5
0
 public override ISendChannel CreatePub(string aName)
 {
     return(new InProcSend(InProcServer.GetListener(aName)));
 }
Exemple #6
0
 public InProcQueue()
 {
     InProcServer.AddRef();
 }