コード例 #1
0
ファイル: RingBuffer.cs プロジェクト: lichunhui811217/MDA
 /// <summary>
 /// Get the current cursor value for the ring buffer. The actual value received will depend on the type of <see cref="ISequencer"/> that is being used.
 /// </summary>
 /// <returns></returns>
 public long GetCursor()
 {
     return(Sequencer.GetCursor());
 }