AsyncQueue.timedPop

Pops data from the @queue. If the queue is empty, blocks until @end_time or until data becomes available.

If no data is received before @end_time, %NULL is returned.

To easily calculate @end_time, a combination of g_get_real_time() and g_time_val_add() can be used.

More...
class AsyncQueue
void*
timedPop

Parameters

endTime TimeVal

a #GTimeVal, determining the final time

Return Value

Type: void*

data from the queue or %NULL, when no data is received before @end_time.

Detailed Description

Deprecated: use g_async_queue_timeout_pop().

Meta