scala.concurrent.Channel
This class provides a simple FIFO queue of data objects, which are read by one
or more reader threads.
Type Members
class LinkedList[A] extends AnyRef
Instance Constructors From scala.concurrent.Channel
new Channel()
(defined at scala.concurrent.Channel)
Value Members From scala.concurrent.Channel
def write(x: A): Unit
Append a value to the FIFO queue to be read by read
. This operation is
nonblocking and can be executed by any thread.
- x
- object to enqueue to this channel
(defined at scala.concurrent.Channel)
Full Source: