SortedPointBufferTKey, TValueTryEnqueue Method
Attempts to enqueue the provided item to the list.
Namespace: SnapDB.Snap.CollectionAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public bool TryEnqueue(
TKey key,
TValue value
)
Public Function TryEnqueue (
key As TKey,
value As TValue
) As Boolean
public:
bool TryEnqueue(
TKey key,
TValue value
)
function TryEnqueue(key, value);
- key TKey
- The key to add.
- value TValue
- The value to add.
Booleantrue if the item was successfully enqueued;
false if the queue is full.