Esempio n. 1
0
 public IceInternal.IEndpointFactory Clone(IceInternal.TransportInstance instance)
 {
     return(this);
 }
Esempio n. 2
0
 public TcpEndpoint(TransportInstance instance, Ice.InputStream s) :
     base(instance, s)
 {
     _timeout  = s.ReadInt();
     _compress = s.ReadBool();
 }
Esempio n. 3
0
 public UdpEndpoint(TransportInstance instance) :
     base(instance)
 {
     _connect  = false;
     _compress = false;
 }
Esempio n. 4
0
 public TcpEndpoint(TransportInstance instance) :
     base(instance)
 {
     _timeout  = instance.DefaultTimeout;
     _compress = false;
 }
Esempio n. 5
0
 //
 // Only for use by TcpConnector, TcpAcceptor
 //
 internal TcpTransceiver(TransportInstance instance, StreamSocket stream)
 {
     _instance = instance;
     _stream   = stream;
 }