Class TelemetryReceiver
Client for glued contract Azos.Sky.Contracts.ITelemetryReceiver server.
Each contract method has synchronous and asynchronous versions, the later denoted by 'Async_' prefix.
May inject client-level inspectors here like so:
client.MsgInspectors.Register( new YOUR_CLIENT_INSPECTOR_TYPE());
Inheritance
System.Object
TelemetryReceiver
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: Azos.Sky.dll
Syntax
public class TelemetryReceiver : ClientEndPoint, ITelemetryReceiverClient, ISkyServiceClient, IDisposable, ITelemetryReceiver, ISkyService
Constructors
TelemetryReceiver(IGlue, Node, Binding)
Declaration
public TelemetryReceiver(IGlue glue, Node node, Binding binding = null)
Parameters
TelemetryReceiver(IGlue, String, Binding)
Declaration
public TelemetryReceiver(IGlue glue, string node, Binding binding = null)
Parameters
Type |
Name |
Description |
IGlue |
glue |
|
System.String |
node |
|
Binding |
binding |
|
Properties
Contract
Declaration
public override Type Contract { get; }
Property Value
Type |
Description |
System.Type |
|
Overrides
Methods
Async_SendDatums(Datum[])
Asynchronous invoker for 'Azos.Sky.Contracts.ITelemetryReceiver.SendDatums'.
This is a one-way call per contract specification, meaning - the server sends no acknowledgement of this call receipt and
there is no result that server could return back to the caller.
CallSlot is returned that can be queried for CallStatus, ResponseMsg.
Declaration
public CallSlot Async_SendDatums(Datum[] data)
Parameters
Type |
Name |
Description |
Datum[] |
data |
|
Returns
SendDatums(Datum[])
Synchronous invoker for 'Azos.Sky.Contracts.ITelemetryReceiver.SendDatums'.
This is a one-way call per contract specification, meaning - the server sends no acknowledgement of this call receipt and
there is no result that server could return back to the caller.
ClientCallException is thrown if the call could not be placed in the outgoing queue.
Declaration
public void SendDatums(Datum[] data)
Parameters
Type |
Name |
Description |
Datum[] |
data |
|
Implements
System.IDisposable
Extension Methods