grpc-d-core ~master (2021-10-08T04:49:21Z)
Dub
Repo
Queue
grpc
service
queue
Undocumented in source.
class
Queue (
T
) {
int
count
[@property getter];
void
lock
();
void
unlock
();
this
();
~this
();
void
signal
();
void
notifyAll
();
void
put
(T value);
void
notify
(gpr_timespec timeout);
bool
empty
();
T
popFront
();
void
pop
();
T
front
();
}
Constructors
this
this
()
Undocumented in source.
Destructor
~this
~this
()
Undocumented in source.
Members
Functions
empty
bool
empty
()
Undocumented in source. Be warned that the author may not have intended to support it.
front
T
front
()
To be iterable with
foreach
loop.
lock
void
lock
()
Undocumented in source. Be warned that the author may not have intended to support it.
notify
void
notify
(gpr_timespec timeout)
To be iterable with
foreach
loop.
notifyAll
void
notifyAll
()
Undocumented in source. Be warned that the author may not have intended to support it.
pop
void
pop
()
Undocumented in source.
popFront
T
popFront
()
To be iterable with
foreach
loop.
put
void
put
(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
signal
void
signal
()
Add to the Queue (to the end).
unlock
void
unlock
()
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
count
int
count
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
grpc
service
queue
classes
Queue