C# Class GSF.Snap.Services.Reader.SortedTreeEngineReaderOptions

Contains the options to use for executing an individual read request.
Show file Open project: GridProtectionAlliance/openHistorian Class Usage Examples

Public Methods

Method Description
Save ( BinaryStreamBase stream ) : void

Writes this data to the stream.

SortedTreeEngineReaderOptions ( BinaryStreamBase stream ) : System

Creates a new SortedTreeEngineReaderOptions from a stream

SortedTreeEngineReaderOptions ( System.TimeSpan timeout = default(TimeSpan), long maxReturnedCount, long maxScanCount, long maxSeekCount ) : System

Creates SortedTreeEngineReaderOptions.

Private Methods

Method Description
SortedTreeEngineReaderOptions ( ) : System

Method Details

Save() public method

Writes this data to the stream.
public Save ( BinaryStreamBase stream ) : void
stream GSF.IO.BinaryStreamBase the stream to write data to
return void

SortedTreeEngineReaderOptions() public method

Creates a new SortedTreeEngineReaderOptions from a stream
public SortedTreeEngineReaderOptions ( BinaryStreamBase stream ) : System
stream GSF.IO.BinaryStreamBase the stream to read from
return System

SortedTreeEngineReaderOptions() public method

Creates SortedTreeEngineReaderOptions.
public SortedTreeEngineReaderOptions ( System.TimeSpan timeout = default(TimeSpan), long maxReturnedCount, long maxScanCount, long maxSeekCount ) : System
timeout System.TimeSpan the time before a query will end prematurely
maxReturnedCount long the maximum number of Key/Values to send to the client before ending prematurely
maxScanCount long the maximum number of points for the database to read before ending prematurely
maxSeekCount long the maximum seeks that will occur before ending prematurely
return System