NotifyingQueue.pop

Pops a Request instance from the queue

  1. T* pop(Contiguous!(T) cont_buffer)
  2. T* pop(void[] buffer)
    class NotifyingQueue(T)
    static if(!(is(T == struct)))
    T*
    pop
    (
    ref void[] buffer
    )

Parameters

buffer void[]

deserialisation buffer to use

Return Value

Type: T*

pointer to the deserialized item, completely allocated in the given buffer

Meta