IResultRandomReadBridge Interface

A read bridge that is able to access time step data in random order from a result storage.

Definition

Namespace: DHI.Mike1D.ResultDataAccess
Assembly: DHI.Mike1D.ResultDataAccess (in DHI.Mike1D.ResultDataAccess.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public interface IResultRandomReadBridge : IResultReadBridge, 
	IResultBridge
Implements
IResultBridge, IResultReadBridge

Properties

Connection Connection specifying the file to read from
(Inherited from IResultReadBridge)
Filter Specifies what data to load. Must be set before any call to the open and read methods.
(Inherited from IResultReadBridge)
NumberOfTimeSteps Return the number of time steps in the storage
(Inherited from IResultReadBridge)

Methods

Connect Connects to storage
(Inherited from IResultReadBridge)
Finish Used to disconnect from/close persistant storage and free resources if needed.
(Inherited from IResultBridge)
Read Reads the header and data from persistant storage and populates the associated resultData object. This is the same as calling ReadHeader(IDiagnostics) and ReadData(IDiagnostics) in that order.
(Inherited from IResultReadBridge)
ReadData Reads in the data from persistant storage and populates the associated resultdata object.

You can not load the data without having loaded the header, hence it can be assumed that ReadHeader(IDiagnostics) has already been called.


(Inherited from IResultReadBridge)
ReadHeader Reads in the header data from persistent storage and populates the associated resultdata object.
(Inherited from IResultReadBridge)
ReadTimeForTimeStep Return the time for the given time step
ReadTimeStep Read and populate result data with data for the given time step

Events

TimeStepReadEvent Event triggered everytime a time step has been read
(Inherited from IResultReadBridge)

See Also