to ( value channel -- )
Channels

Prev:<channel> ( -- channel )
Next:from ( channel -- value )


Vocabulary
channels

Inputs
valuean object
channela channel


Outputs
None

Word description
Sends an object to a channel. The send operation is synchronous. It will block the calling thread until there is a receiver waiting for data on the channel. It will return when the receiver has received the data successfully.

See also
<channel>, from

Definition

GENERIC: to ( value channel -- )


Methods