Object/Class

monix.execution

ChannelType

Related Docs: class ChannelType | package execution

Permalink

object ChannelType extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ChannelType
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class ConsumerSide extends Serializable

    Permalink

    Enumeration for describing the type of the producer, with two possible values:

    Enumeration for describing the type of the producer, with two possible values:

  2. sealed abstract class ProducerSide extends Serializable

    Permalink

    Enumeration for describing the type of the producer, with two possible values:

    Enumeration for describing the type of the producer, with two possible values:

    This is often used to optimize the underlying buffer used. The multi-producer option is the safe default and specifies that multiple producers (threads, actors, etc) can push events concurrently, whereas the single-producer option specifies that a single producer can (sequentially) push events and can be used as an (unsafe) optimization.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object MPMC extends ChannelType with Product with Serializable

    Permalink

    Multi-producer, multi-consumer

  5. object MPSC extends ChannelType with Product with Serializable

    Permalink

    Single-producer, single-consumer

  6. object MultiConsumer extends ConsumerSide with Product with Serializable

    Permalink

    Multi-consumer channel side, meaning that multiple actors can pull data from the channel, from multiple threads, concurrently.

  7. object MultiProducer extends ProducerSide with Product with Serializable

    Permalink

    Multi-producer channel side, meaning that multiple actors can push messages from multiple threads, concurrently.

  8. object SPMC extends ChannelType with Product with Serializable

    Permalink

    Single-producer, multi-consumer

  9. object SPSC extends ChannelType with Product with Serializable

    Permalink

    Single-producer, single-consumer

  10. object SingleConsumer extends ConsumerSide with Product with Serializable

    Permalink

    Single-consumer channel side, meaning that a single actor can pull data from the channel.

    Single-consumer channel side, meaning that a single actor can pull data from the channel.

    It can do so from multiple threads, but not concurrently, so it needs clear happens-before relationships between subsequent pull operations.

    WARNING: This is often selected as an optimization. Use with care and prefer MultiConsumer when in doubt.

  11. object SingleProducer extends ProducerSide with Product with Serializable

    Permalink

    Single-producer channel side, meaning that only a single actor can push messages on the channel.

    Single-producer channel side, meaning that only a single actor can push messages on the channel.

    It can do so from multiple threads, but not concurrently, so it needs clear happens-before relationships between subsequent push operations.

    WARNING: This is often selected as an optimization. Use with care and prefer MultiProducer when in doubt.

  12. def apply(id: String): Option[ChannelType]

    Permalink

    Converts a string value into a ChannelType.

  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. def assemble(p: ProducerSide, c: ConsumerSide): ChannelType

    Permalink

    Given a ProducerSide value and a ConsumerSide value, assemble a ChannelType value out of them.

  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped