Ring based store of reusable entries containing the data representing an Entry<(Of <(<'T>)>)> being exchanged between producers and consumers. Based only supports one producer thread, and one consumer thread.

Namespace: RCLibrary.SlimPC
Assembly: RCLibrary (in RCLibrary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public sealed class RingBuffer2<T>
where T : class, new()
Visual Basic
Public NotInheritable Class RingBuffer2(Of T As {Class, New})
Visual C++
generic<typename T>
where T : ref class, gcnew()
public ref class RingBuffer2 sealed

Type Parameters

T
Entry implementation storing the data for sharing during exchange or parallel coordination of an event.

Inheritance Hierarchy

System..::..Object
  RCLibrary.SlimPC..::..RingBuffer2<(Of <(<'T>)>)>

See Also