Class GenericCircularBuffer<T>
This class encapsulate control variable to manage a circular buffer.
Inherited Members
Namespace: Mechatronics.SystemGraph
Syntax
public class GenericCircularBuffer<T> : GenericBuffer<T> where T : struct
Type Parameters
Name | Description |
---|---|
T |
Fields
_firstOffset
The offset in bytes to the first element if _data is used as a circular buffer.
Declaration
protected int _firstOffset
Field Value
Type | Description |
---|---|
Int32 |
Properties
FirstOffset
The offset in bytes to the first element if _data is used as a circular buffer.
Declaration
public int FirstOffset { get; set; }
Property Value
Type | Description |
---|---|
Int32 |