Class XAxisDataManager
XAxis Provider
Inheritance
System.Object
XAxisDataManager
Implements
System.IDisposable
Namespace: MESL.SqlRace.Domain.XAxis
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class XAxisDataManager : Object, IDisposable
Constructors
XAxisDataManager()
Initializes a new instance of the XAxisDataManager class.
Declaration
public XAxisDataManager()
Fields
DefaultDataStoreCapacity
The default data store capacity
Declaration
public const int DefaultDataStoreCapacity = 1000000
Field Value
Type | Description |
---|---|
System.Int32 |
Properties
DataStores
Gets the data stores.
Declaration
public List<XAxisDataStore> DataStores { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<XAxisDataStore> | The data stores. |
Methods
CreateDataStore(SessionBase, String, String)
Creates a new data store.
Declaration
public XAxisDataStore CreateDataStore(SessionBase session, string xAxisParameterIdentifier, string dataStoreName)
Parameters
Type | Name | Description |
---|---|---|
SessionBase | session | The session. |
System.String | xAxisParameterIdentifier | The x axis parameter identifier. |
System.String | dataStoreName | Name of the data store. |
Returns
Type | Description |
---|---|
XAxisDataStore |
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
Finalize()
Finalizes an instance of the XAxisDataManager class.
Declaration
protected override void Finalize()
GetDataStore(SessionKey, String)
Gets the data store.
Declaration
public XAxisDataStore GetDataStore(SessionKey dataStoreSessionKey, string dataStoreParameterIdentifier)
Parameters
Type | Name | Description |
---|---|---|
SessionKey | dataStoreSessionKey | The data store session key. |
System.String | dataStoreParameterIdentifier | The data store parameter identifier. |
Returns
Type | Description |
---|---|
XAxisDataStore |
GetDataStore(DataStoreKey)
Gets the data store.
Declaration
public XAxisDataStore GetDataStore(DataStoreKey dataStoreKey)
Parameters
Type | Name | Description |
---|---|---|
DataStoreKey | dataStoreKey | The data store key. |
Returns
Type | Description |
---|---|
XAxisDataStore |
Implements
System.IDisposable