AsyncQueue.pushFront

Pushes the item into the queue. item must not be NULL. In contrast to AsyncQueue.push, this function pushes the new item ahead of the items already in the queue, so that it will be the next one to be popped off the queue.

class AsyncQueue
void
pushFront
(
void* item
)

Parameters

item void*

data to push into the queue

Meta

Since

2.46