Ejemplo n.º 1
0
 public GenericServer(AvroProtocol protocol, ITranceiver tranceiver)
     : base(protocol, tranceiver)
 {
     RemoteProtocol = protocol;
     _protocol      = new GenericResponder(Protocol, RemoteProtocol);
 }
Ejemplo n.º 2
0
 public GenericClient(AvroProtocol protocol, ITranceiver tranceiver)
     : base(protocol, tranceiver)
 {
     RemoteProtocol = protocol;
     _protocol      = new GenericRequestor(Protocol, RemoteProtocol);
 }
Ejemplo n.º 3
0
 protected Session(AvroProtocol protocol, ITranceiver tranceiver)
 {
     Protocol    = protocol;
     _tranceiver = tranceiver;
 }