コード例 #1
0
 public RequestTarsConvert(ITarsConvert <short> shortConvert, ITarsConvert <int> intConvert,
                           ITarsConvert <byte> byteConvert, ITarsConvert <string> stringConvert,
                           IDictionaryInterfaceTarsConvert <string, string> dictConvert, ITarsConvert <IByteBuffer> bufferConvert,
                           ITarsConvertRoot convertRoot, IRpcMetadata rpcMetadata, ITarsHeadHandler headHandler)
 {
     this.shortConvert  = shortConvert;
     this.intConvert    = intConvert;
     this.byteConvert   = byteConvert;
     this.stringConvert = stringConvert;
     this.dictConvert   = dictConvert;
     this.bufferConvert = bufferConvert;
     this.convertRoot   = convertRoot;
     this.rpcMetadata   = rpcMetadata;
     this.headHandler   = headHandler;
 }
コード例 #2
0
 public DictionaryClassTarsConvert(IDictionaryInterfaceTarsConvert <K, V> convert)
 {
     this.convert = convert;
 }