Class CircularBuffer<T>.ItemOverflownEventArgs
Arguments for item being replaced because of buffer was overflown with data
Inheritance
System.Object
CircularBuffer<T>.ItemOverflownEventArgs
Namespace: FlaxEngine.Collections
Assembly: FlaxEngine.CSharp.dll
Syntax
public class ItemOverflownEventArgs : EventArgs
Constructors
ItemOverflownEventArgs(Boolean, T)
Initializes a new instance of the CircularBuffer<T>.ItemOverflownEventArgs class.
Declaration
public ItemOverflownEventArgs(bool wasFrontItem, T item)
Parameters
System. if set to |
T
item
The item. |
Properties
Item
Gets overflown item
Declaration
public T Item { get; }
Property Value
T
|
WasFrontItem
Gets if item removed was item from front of the buffer
Declaration
public bool WasFrontItem { get; }
Property Value
System.
|