Template Class Channel
Defined in File actor.hpp
Class Documentation
-
template<typename T>
class Channel A typed channel with an unbounded number of entries.
Public Functions
-
inline Channel(Actor &actor)
associated with a specified actor, which allows that actor to wait for this channel at the same time as others.
-
inline Channel()
not associated with any actor
-
inline void clear()
remove all elements
-
inline bool readable()
is this non-empty?
-
inline bool readable_with_lock()
is this non-empty? requires the associated lock to be held
-
inline Channel(Actor &actor)