Lines Matching refs:transport
46 …self.transport = THttpClient.THttpClient(uri, cafile=__cafile, cert_file=__certfile, key_file=__ke…
48 self.transport = THttpClient.THttpClient(uri)
51 from thrift.transport import TSSLSocket
56 self.transport = TTransport.TBufferedTransport(socket)
58 self.transport = TTransport.TFramedTransport(socket)
60 self.transport = TTransport.TBufferedTransport(socket)
64 self.transport = TZlibTransport.TZlibTransport(self.transport, 9)
65 self.transport.open()
66 protocol = self.get_protocol(self.transport)
69 protocol2 = self.get_protocol2(self.transport)
73 self.transport.close()
315 def get_protocol2(self, transport): argument
320 def get_protocol(self, transport): argument
321 return make_pedantic(TBinaryProtocol.TBinaryProtocolFactory().getProtocol(transport))
325 def get_protocol(self, transport): argument
326 … wrapped_proto = make_pedantic(TBinaryProtocol.TBinaryProtocolFactory().getProtocol(transport))
329 def get_protocol2(self, transport): argument
330 … wrapped_proto = make_pedantic(TBinaryProtocol.TBinaryProtocolFactory().getProtocol(transport))
335 def get_protocol(self, transport): argument
336 …_pedantic(TBinaryProtocol.TBinaryProtocolAcceleratedFactory(fallback=False).getProtocol(transport))
340 def get_protocol(self, transport): argument
341 …_pedantic(TBinaryProtocol.TBinaryProtocolAcceleratedFactory(fallback=False).getProtocol(transport))
344 def get_protocol2(self, transport): argument
345 …_pedantic(TBinaryProtocol.TBinaryProtocolAcceleratedFactory(fallback=False).getProtocol(transport))
350 def get_protocol(self, transport): argument
351 return make_pedantic(TCompactProtocol.TCompactProtocolFactory().getProtocol(transport))
355 def get_protocol(self, transport): argument
356 … wrapped_proto = make_pedantic(TCompactProtocol.TCompactProtocolFactory().getProtocol(transport))
359 def get_protocol2(self, transport): argument
360 … wrapped_proto = make_pedantic(TCompactProtocol.TCompactProtocolFactory().getProtocol(transport))
365 def get_protocol(self, transport): argument
366 …edantic(TCompactProtocol.TCompactProtocolAcceleratedFactory(fallback=False).getProtocol(transport))
370 def get_protocol(self, transport): argument
371 …edantic(TCompactProtocol.TCompactProtocolAcceleratedFactory(fallback=False).getProtocol(transport))
374 def get_protocol2(self, transport): argument
375 …edantic(TCompactProtocol.TCompactProtocolAcceleratedFactory(fallback=False).getProtocol(transport))
380 def get_protocol(self, transport): argument
381 return make_pedantic(TJSONProtocol.TJSONProtocolFactory().getProtocol(transport))
385 def get_protocol(self, transport): argument
386 wrapped_proto = make_pedantic(TJSONProtocol.TJSONProtocolFactory().getProtocol(transport))
389 def get_protocol2(self, transport): argument
390 wrapped_proto = make_pedantic(TJSONProtocol.TJSONProtocolFactory().getProtocol(transport))
395 def get_protocol(self, transport): argument
397 return make_pedantic(factory.getProtocol(transport))
401 def get_protocol(self, transport): argument
402 … wrapped_proto = make_pedantic(THeaderProtocol.THeaderProtocolFactory().getProtocol(transport))
405 def get_protocol2(self, transport): argument
406 … wrapped_proto = make_pedantic(THeaderProtocol.THeaderProtocolFactory().getProtocol(transport))
492 from thrift.transport import TTransport
493 from thrift.transport import TSocket
494 from thrift.transport import THttpClient
495 from thrift.transport import TZlibTransport