C# Class TSystems.RELOAD.Storage.StoredDataSpecifier

Each StoredDataSpecifier specifies a single kind of data to retrieve and (if appropriate) the subset of values that are to be retrieved. see RELOAD base -12 p.93
Show file Open project: RELOAD-NET/RELOAD.NET Class Usage Examples

Public Properties

Property Type Description
generation System.UInt64
kindId System.UInt32

Public Methods

Method Description
StoredDataSpecifier ( List indices, UInt32 kindId, System.UInt64 generation, UsageManager manager ) : System

Use this contructor to create a StoreDataSpecifier that requests an array Range.

StoredDataSpecifier ( List keys, UInt32 kindId, System.UInt64 generation, UsageManager manager ) : System

Use this contructor to create a StoreDataSpecifier that requests a dictionary.

StoredDataSpecifier ( UInt32 kindId, System.UInt64 generation, UsageManager manager ) : System

Use this contructor to create a StoreDataSpecifier that requests a singale value.

StoredDataSpecifier ( UsageManager manager ) : System

Just an initializer! Use only while reading a message from wire.

Method Details

StoredDataSpecifier() public method

Use this contructor to create a StoreDataSpecifier that requests an array Range.
public StoredDataSpecifier ( List indices, UInt32 kindId, System.UInt64 generation, UsageManager manager ) : System
indices List The array ranges you want to fetch
kindId System.UInt32 The Kind ID of the requsted Kind
generation System.UInt64 The generation_counter of this value
manager TSystems.RELOAD.Usage.UsageManager
return System

StoredDataSpecifier() public method

Use this contructor to create a StoreDataSpecifier that requests a dictionary.
public StoredDataSpecifier ( List keys, UInt32 kindId, System.UInt64 generation, UsageManager manager ) : System
keys List The value keys to be fetched. Set this parameter null to create a wildcard fetch.
kindId System.UInt32 The Kind ID of the requsted Kind
generation System.UInt64 The generation_counter of this value
manager TSystems.RELOAD.Usage.UsageManager
return System

StoredDataSpecifier() public method

Use this contructor to create a StoreDataSpecifier that requests a singale value.
public StoredDataSpecifier ( UInt32 kindId, System.UInt64 generation, UsageManager manager ) : System
kindId System.UInt32 The Kind ID of the requsted Kind
generation System.UInt64 The generation_counter of this value
manager TSystems.RELOAD.Usage.UsageManager
return System

StoredDataSpecifier() public method

Just an initializer! Use only while reading a message from wire.
public StoredDataSpecifier ( UsageManager manager ) : System
manager TSystems.RELOAD.Usage.UsageManager
return System

Property Details

generation public property

public UInt64,System generation
return System.UInt64

kindId public property

public UInt32,System kindId
return System.UInt32