Trait

arteria.core

MessageChannelBase

Related Doc: package core

Permalink

trait MessageChannelBase extends AnyRef

Base functionality for a message channel

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MessageChannelBase
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def channelClosed(channelId: Int): Unit

    Permalink

    Called when a child channel is closed.

    Called when a child channel is closed.

    channelId

    Channel identifier

    Attributes
    protected[arteria.core]
  2. abstract def globalId: Int

    Permalink
  3. abstract def id: Int

    Permalink
  4. abstract def materializeChildChannel(channelId: Int, channelGlobalId: Int, channelReader: ChannelReader): MessageChannelBase

    Permalink

    Materializes a new child channel by reading metadata from the stream and passing it to the handler.

    Materializes a new child channel by reading metadata from the stream and passing it to the handler.

    channelId

    Channel identifier

    channelGlobalId

    Global channel identifier

    channelReader

    Reader for accessing the data stream

    Attributes
    protected[arteria.core]
  5. abstract def parent: MessageChannelBase

    Permalink
  6. abstract def receive(channelReader: ChannelReader): Unit

    Permalink

    Receive and process a message.

    Receive and process a message.

    channelReader

    Reader for accessing pickled message data

  7. abstract def receiveDrop(channelReader: ChannelReader): Unit

    Permalink

    Receives and drops a message

    Receives and drops a message

    channelReader

    Reader for accessing pickled message data

Concrete 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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val channelIdx: AtomicInteger

    Permalink
    Attributes
    protected[arteria.core]
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def close(): Unit

    Permalink

    Close this channel

  8. def closeChannel(channel: MessageChannelBase): Unit

    Permalink

    Close a previously created child channel.

    Close a previously created child channel.

    channel

    The channel to be closed

  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def established(): Unit

    Permalink

    Called when the other side has established the channel.

    Called when the other side has established the channel.

    Attributes
    protected[arteria.core]
  12. def establishing(): Unit

    Permalink

    Called when channel is being established

    Called when channel is being established

    Attributes
    protected[arteria.core]
  13. def finalize(): Unit

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  20. lazy val router: MessageRouterBase

    Permalink
  21. var subChannels: IntMap[MessageChannelBase]

    Permalink
    Attributes
    protected[arteria.core]
  22. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped