Kinetica   C#   API  Version 7.2.3.0
SpecificProtocol.cs
Go to the documentation of this file.
1 
18 namespace Avro.Specific
19 {
20  public interface ISpecificProtocol
21  {
22  Protocol Protocol { get; }
23  void Request(ICallbackRequestor requestor, string messageName, object[] args, object callback);
24  }
25 
26  public interface ICallbackRequestor
27  {
28  void Request<T>(string messageName, object[] args, object callback);
29  }
30 
31 }
void Request(ICallbackRequestor requestor, string messageName, object[] args, object callback)
void Request< T >(string messageName, object[] args, object callback)