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