[This is preliminary documentation and is subject to change.]
Implements FIFO queue that automatically pops old items when capacity limit is reached
Namespace: Tools.ExperimentalAssembly: Tools Experimental (in Tools Experimental.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| 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
See Also