Class GdidPersistenceRemoteLocation
Client for glued contract Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation 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
GdidPersistenceRemoteLocation
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 GdidPersistenceRemoteLocation : ClientEndPoint, IGdidPersistenceRemoteLocationClient, ISkyServiceClient, IDisposable, IGdidPersistenceRemoteLocation, ISkyService
Constructors
GdidPersistenceRemoteLocation(IGlue, Node, Binding)
Declaration
public GdidPersistenceRemoteLocation(IGlue glue, Node node, Binding binding = null)
Parameters
GdidPersistenceRemoteLocation(IGlue, String, Binding)
Declaration
public GdidPersistenceRemoteLocation(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_Read(Byte, String, String)
Asynchronous invoker for 'Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation.Read'.
This is a two-way call per contract specification, meaning - the server sends the result back either
returning no exception or WrappedExceptionData instance.
CallSlot is returned that can be queried for CallStatus, ResponseMsg and result.
Declaration
public CallSlot Async_Read(byte authority, string sequenceName, string scopeName)
Parameters
Type |
Name |
Description |
System.Byte |
authority |
|
System.String |
sequenceName |
|
System.String |
scopeName |
|
Returns
Async_Write(String, String, GDID)
Asynchronous invoker for 'Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation.Write'.
This is a two-way call per contract specification, meaning - the server sends the result back either
returning no exception or WrappedExceptionData instance.
CallSlot is returned that can be queried for CallStatus, ResponseMsg and result.
Declaration
public CallSlot Async_Write(string sequenceName, string scopeName, GDID value)
Parameters
Type |
Name |
Description |
System.String |
sequenceName |
|
System.String |
scopeName |
|
GDID |
value |
|
Returns
Read(Byte, String, String)
Synchronous invoker for 'Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation.Read'.
This is a two-way call per contract specification, meaning - the server sends the result back either
returning '@System.@Nullable[@Azos.@Data.@GDID]' or WrappedExceptionData instance.
ClientCallException is thrown if the call could not be placed in the outgoing queue.
RemoteException is thrown if the server generated exception during method execution.
Declaration
public GDID? Read(byte authority, string sequenceName, string scopeName)
Parameters
Type |
Name |
Description |
System.Byte |
authority |
|
System.String |
sequenceName |
|
System.String |
scopeName |
|
Returns
Type |
Description |
System.Nullable<GDID> |
|
Write(String, String, GDID)
Synchronous invoker for 'Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation.Write'.
This is a two-way call per contract specification, meaning - the server sends the result back either
returning no exception or WrappedExceptionData instance.
ClientCallException is thrown if the call could not be placed in the outgoing queue.
RemoteException is thrown if the server generated exception during method execution.
Declaration
public void Write(string sequenceName, string scopeName, GDID value)
Parameters
Type |
Name |
Description |
System.String |
sequenceName |
|
System.String |
scopeName |
|
GDID |
value |
|
Implements
System.IDisposable
Extension Methods