[This is preliminary documentation and is subject to change.]

Implements FIFO queue that automatically pops old items when capacity limit is reached

Namespace: Tools.Experimental
Assembly: Tools Experimental (in Tools Experimental.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public class BlackHoleQueue<T> : ICollection<T>
Visual Basic
Public Class BlackHoleQueue(Of T) _
	Implements ICollection(Of T)
Visual C++
generic<typename T>
public ref class BlackHoleQueue : ICollection<T>
F#
type BlackHoleQueue<'T> =  
    class
        interface ICollection<'T>
    end
JScript
JScript does not support generic types or methods.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Tools.Experimental.BlackHoleQueue`1"]

Inheritance Hierarchy

System..::..Object
  Tools.Experimental..::..BlackHoleQueue<(Of <(<'T>)>)>

See Also