Property | Type | Description | |
---|---|---|---|
ArchiveFileAllocationTable | System | ||
RequestDataBlock |
Method | Description | |
---|---|---|
Extend ( ) : void |
Extends the ArchiveFile by one ArchiveDataBlock.
|
|
Extend ( int dataBlocksToAdd ) : void |
Extends the ArchiveFile by the specified number of ArchiveDataBlocks.
|
|
FindDataBlock ( int historianID, bool preRead = true ) : |
Returns the first ArchiveDataBlock in the ArchiveFile for the specified historianID.
|
|
FindDataBlocks ( int historianID, TimeTag startTime, TimeTag endTime, bool preRead = true ) : List |
Returns all ArchiveDataBlocks in the ArchiveFile for the specified historianID with ArchiveDataPoints between the specified startTime and endTime.
|
|
FindDataBlocks ( int historianID, TimeTag startTime, bool preRead = true ) : List |
Returns all ArchiveDataBlocks in the ArchiveFile for the specified historianID with ArchiveDataPoint points later than the specified startTime.
|
|
FindDataBlocks ( int historianID, bool preRead = true ) : List |
Returns all ArchiveDataBlocks in the ArchiveFile for the specified historianID.
|
|
FindLastDataBlock ( int historianID, bool preRead = true ) : |
Returns the last ArchiveDataBlock in the ArchiveFile for the specified historianID.
|
|
GenerateBinaryImage ( byte buffer, int startIndex ) : int |
Generates binary image of the ArchiveFileAllocationTable and copies it into the given buffer, for BinaryLength bytes.
|
|
ParseBinaryImage ( byte buffer, int startIndex, int length ) : int |
Initializes object by parsing the specified buffer containing a binary image. This method is never used since constructor parses the point allocation table. |
|
Save ( bool forceFlush = false ) : void |
Saves the ArchiveFileAllocationTable data to the ArchiveFile.
|
Method | Description | |
---|---|---|
ArchiveFileAllocationTable ( |
Initializes a new instance of the ArchiveFileAllocationTable class.
|
|
RequestDataBlock ( int historianID, TimeTag dataTime, int blockIndex ) : |
Returns an ArchiveDataBlock for writing ArchiveDataPoints for the specified historianID.
|
public Extend ( int dataBlocksToAdd ) : void | ||
dataBlocksToAdd | int | Number of |
return | void |
public FindDataBlock ( int historianID, bool preRead = true ) : |
||
historianID | int | Historian identifier whose |
preRead | bool | true to pre-read data to locate write cursor. |
return |
public FindDataBlocks ( int historianID, TimeTag startTime, TimeTag endTime, bool preRead = true ) : List |
||
historianID | int | Historian identifier. |
startTime | TimeTag | Start |
endTime | TimeTag | End |
preRead | bool | true to pre-read data to locate write cursor. |
return | List |
public FindDataBlocks ( int historianID, TimeTag startTime, bool preRead = true ) : List |
||
historianID | int | Historian identifier. |
startTime | TimeTag | Start |
preRead | bool | true to pre-read data to locate write cursor. |
return | List |
public FindDataBlocks ( int historianID, bool preRead = true ) : List |
||
historianID | int | Historian identifier. |
preRead | bool | true to pre-read data to locate write cursor. |
return | List |
public FindLastDataBlock ( int historianID, bool preRead = true ) : |
||
historianID | int | Historian identifier. |
preRead | bool | true to pre-read data to locate write cursor. |
return |
public GenerateBinaryImage ( byte buffer, int startIndex ) : int | ||
buffer | byte | Buffer used to hold generated binary image of the source object. |
startIndex | int | 0-based starting index in the |
return | int |
public ParseBinaryImage ( byte buffer, int startIndex, int length ) : int | ||
buffer | byte | Buffer containing binary image to parse. |
startIndex | int | 0-based starting index in the |
length | int | Valid number of bytes within |
return | int |
public Save ( bool forceFlush = false ) : void | ||
forceFlush | bool | Forces an immediate disk flush for save. |
return | void |