akka.channels

ChannelRef

final class ChannelRef[+T <: ChannelList] extends AnyVal

A channel reference, holding a type list of all channels supported by the underlying actor. This actor’s reference can be obtained as the actorRef member.

Linear Supertypes
AnyVal, NotNull, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ChannelRef
  2. AnyVal
  3. NotNull
  4. Any
Implicitly
  1. by anyOps
  2. by any2stringadd
  3. by any2stringfmt
  4. by any2ArrowAssoc
  5. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ChannelRef(actorRef: ActorRef)

Value Members

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

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

    Definition Classes
    Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  4. def -!->[C <: ChannelList](channel: ChannelRef[C]): ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to AnyOps[ChannelRef[T]] performed by method anyOps in akka.channels.
    Definition Classes
    AnyOps
    Annotations
    @macroImpl( ... )
  5. def ->[B](y: B): (ChannelRef[T], B)

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to ArrowAssoc[ChannelRef[T]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def -?->[C <: ChannelList](channel: ChannelRef[C]): Future[_]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to AnyOps[ChannelRef[T]] performed by method anyOps in akka.channels.
    Definition Classes
    AnyOps
    Annotations
    @macroImpl( ... )
  7. def <-!-[M](future: Future[M]): Future[M]

    Eventually send the value contained in the future over this channel, “tell” semantics, returning a Future which is completed after sending with the value which was sent (“Future.

    Eventually send the value contained in the future over this channel, “tell” semantics, returning a Future which is completed after sending with the value which was sent (“Future.andThen” semantics).

    Annotations
    @macroImpl( ... )
  8. def <-!-[M](msg: M): M

    Send a message over this channel, “tell” semantics, returning the message.

    Send a message over this channel, “tell” semantics, returning the message.

    Annotations
    @macroImpl( ... )
  9. def <-?-[M](msg: M): Future[_]

    Send a message over this channel, “ask” semantics, returning a Future which will be completed with the reply message or a TimeoutException.

    Send a message over this channel, “ask” semantics, returning a Future which will be completed with the reply message or a TimeoutException. If the message is a Future itself, eventually send the Future’s value.

    Annotations
    @macroImpl( ... )
  10. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  11. val actorRef: ActorRef

  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def ensuring(cond: (ChannelRef[T]) ⇒ Boolean, msg: ⇒ Any): ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to Ensuring[ChannelRef[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (ChannelRef[T]) ⇒ Boolean): ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to Ensuring[ChannelRef[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to Ensuring[ChannelRef[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to Ensuring[ChannelRef[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def narrow[C <: ChannelList]: ChannelRef[C]

    Narrow this ChannelRef by removing channels or narrowing input types or widening output types.

    Narrow this ChannelRef by removing channels or narrowing input types or widening output types.

    Annotations
    @macroImpl( ... )
  21. def toString(): String

    Definition Classes
    Any
  22. val value: ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to AnyOps[ChannelRef[T]] performed by method anyOps in akka.channels.
    Definition Classes
    AnyOps
  23. def [B](y: B): (ChannelRef[T], B)

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to ArrowAssoc[ChannelRef[T]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (channelRef: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (channelRef: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to ArrowAssoc[ChannelRef[T]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (channelRef: ArrowAssoc[ChannelRef[T]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: ChannelRef[T]

    Implicit information
    This member is added by an implicit conversion from ChannelRef[T] to Ensuring[ChannelRef[T]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (channelRef: Ensuring[ChannelRef[T]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

Inherited by implicit conversion anyOps from ChannelRef[T] to AnyOps[ChannelRef[T]]

Inherited by implicit conversion any2stringadd from ChannelRef[T] to StringAdd

Inherited by implicit conversion any2stringfmt from ChannelRef[T] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from ChannelRef[T] to ArrowAssoc[ChannelRef[T]]

Inherited by implicit conversion any2Ensuring from ChannelRef[T] to Ensuring[ChannelRef[T]]

Ungrouped