Example #1
0
 public Task <bool> AttachTo(ITransportManager transportManager)
 {
     transportManager.RegisterListener(this);
     return(Task.FromResult(true));
 }
Example #2
0
 public Task<bool> AttachTo(ITransportManager transportManager)
 {
     this._isListening = true;
     transportManager.RegisterListener(this);
     return Task.FromResult(true);
 }