LifoQueue

A subclass of $(D_PSYMBOL Queue) that retrieves most recently added entries first.

class LifoQueue : Queue!(T, maxSize)(
T
size_t maxSize = 0
) {}

Constructors

this
this(EventLoop eventLoop)
Undocumented in source.

Members

Functions

get_
T get_()
Undocumented in source. Be warned that the author may not have intended to support it.
put_
void put_(T item)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta