Search Results for

    Show / Hide Table of Contents

    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.Boolean wasFrontItem

    if set to true [was front item].

    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.Boolean

    Extension Methods

    Extensions.ReflectiveCompare<T>(T, T)
    Extensions.RawClone<T>(T)
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat