Channel

ox.channels.Channel
See theChannel companion trait
object Channel

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Channel.type

Members list

Value members

Concrete methods

def apply[T](capacity: Int): Channel[T]

Creates direct or buffered channels. Channels up to a certain limit use an fixed-size-array backed queue otherwise they use a linked-list-based queue. To create an unbounded channel, pass in Int.MaxValue as the capacity.

Creates direct or buffered channels. Channels up to a certain limit use an fixed-size-array backed queue otherwise they use a linked-list-based queue. To create an unbounded channel, pass in Int.MaxValue as the capacity.

Attributes