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