示例#1
0
 public StoreListingResponseHandler(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 GetStoreIdResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
示例#4
0
 public FileHeaderHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler, LogProvider logProvider)
 {
     this._protocol = protocol;
     this._handler  = handler;
     this._log      = logProvider.getLog(this.GetType());
 }
示例#5
0
 public TxPullResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
示例#6
0
 public FileChunkHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
示例#7
0
 public StoreCopyFinishedResponseHandler(CatchupClientProtocol protocol, CatchUpResponseHandler handler)
 {
     this._protocol = protocol;
     this._handler  = handler;
 }
示例#8
0
 public Factory(NettyPipelineBuilderFactory pipelineBuilder, LogProvider logProvider, CatchUpResponseHandler handler) : base(APPLICATION_PROTOCOL, outerInstance.modifiers->new CatchupProtocolClientInstaller(pipelineBuilder, outerInstance.modifiers, logProvider, handler))