예제 #1
0
 /// <summary>
 /// Indicates if all of the available data is ready
 /// </summary>
 /// <returns>True if the DataSet contains all available data</returns>
 public override bool IsReady()
 {
     // Ready if the source is empty, or if the index of the last point (adjusted for the interval) is at the end of the source
     return(SourceData.IsReady() && ((SourceData.Count == 0) || (SourceData.DataSet.Count == GetSourceIndex(DataSet.Count))));
 }
 /// <summary>
 /// Indicates if all of the available data is ready
 /// </summary>
 /// <returns>True if the DataSet contains all available data</returns>
 public override bool IsReady()
 {
     return(SourceData.IsReady() && (SourceData.DataSet.Count == GetSourceIndex(DataSet.Count)));
 }