Example #1
0
 public RpcTcpClientInitializer(IConfigurationRoot configuration, ClientHandler handler, TarsCodecAttribute tars)
 {
     this.configuration = configuration;
     this.handler       = handler;
     this.tars          = tars;
 }
Example #2
0
 public TarsResponseDecoder(TarsCodecAttribute tars)
 {
     this.tars = tars;
 }
Example #3
0
 public RpcUdpClientInitializer(ClientHandler handler, TarsCodecAttribute tars)
 {
     this.handler = handler;
     this.tars    = tars;
 }
Example #4
0
 public TarsRequestDecoder(TarsCodecAttribute tars)
 {
     this.tars = tars;
 }