IUntypedQueue.push

Pushes an item of size bytes to the queue. The caller should set the returned item as desired

interface IUntypedQueue
void[]
push
(
size_t size
)

Parameters

size size_t

number of bytes to push into queue

Return Value

Type: void[]

Newly pushed item, null if the item could not be pushed (see documentation of implementing class for possible failure reasons)

Meta