GSF.Snap.Services.Reader.SortedTreeEngineReaderOptions.SortedTreeEngineReaderOptions C# (CSharp) Method

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
        public SortedTreeEngineReaderOptions(TimeSpan timeout = default(TimeSpan), long maxReturnedCount = 0, long maxScanCount = 0, long maxSeekCount = 0)
        {
            Timeout = timeout;
            MaxReturnedCount = maxReturnedCount;
            MaxScanCount = maxScanCount;
            MaxSeekCount = maxSeekCount;
        }

Same methods

SortedTreeEngineReaderOptions::SortedTreeEngineReaderOptions ( ) : System
SortedTreeEngineReaderOptions::SortedTreeEngineReaderOptions ( BinaryStreamBase stream ) : System
SortedTreeEngineReaderOptions