Ejemplo n.º 1
0
 public GetStoreIdResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
Ejemplo n.º 2
0
 public TxStreamFinishedResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
Ejemplo n.º 3
0
 public FileHeaderHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler, LogProvider logProvider)
 {
     this._protocol = protocol;
     this._handler  = handler;
     this._log      = logProvider.getLog(this.GetType());
 }
Ejemplo n.º 4
0
 public TxPullResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
Ejemplo n.º 5
0
 public FileChunkHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
Ejemplo n.º 6
0
 public StoreCopyFinishedResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }