Exemple #1
0
 /// <summary>
 /// Gets concentrated frames from the provided stream
 /// </summary>
 /// <param name="stream">the database to use</param>
 /// <returns></returns>
 public static DataFillAdapter GetFillAdapter(this PointStream stream)
 {
     return(new DataFillAdapter(stream));
 }
Exemple #2
0
 /// <summary>
 /// Gets concentrated frames from the provided stream
 /// </summary>
 /// <param name="stream">the database to use</param>
 /// <returns></returns>
 public static FrameReader GetFrameReader(this PointStream stream)
 {
     return(new FrameReader(stream));
 }
Exemple #3
0
 public DataFillAdapter(PointStream stream)
 {
     m_stream = stream;
     m_stream.Read();
 }
Exemple #4
0
 public FrameReader(PointStream stream)
 {
     m_stream = stream;
     Frame    = new SortedList <ulong, HistorianValueStruct>();
     m_stream.Read();
 }