scala.actors

InternalReplyReactor

trait InternalReplyReactor extends Reactor[Any] with ReactorCanReply

Extends the scala.actors.Reactor trait with methods to reply to the sender of a message. Sending a message to a ReplyReactor implicitly passes a reference to the sender together with the message.

Annotations
@deprecated
Deprecated

(Since version 2.11.0) Use the akka.actor package instead. For migration from the scala.actors package refer to the Actors Migration Guide.

Linear Supertypes
ReactorCanReply, CanReply[Any, Any], Reactor[Any], Combinators, OutputChannel[Any], AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InternalReplyReactor
  2. ReactorCanReply
  3. CanReply
  4. Reactor
  5. Combinators
  6. OutputChannel
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Future[+P] = actors.Future[P]

    Definition Classes
    ReactorCanReply → CanReply

Abstract Value Members

  1. abstract def act(): Unit

    The reactor's behavior is specified by implementing this method.

    The reactor's behavior is specified by implementing this method.

    Definition Classes
    Reactor

Concrete Value Members

  1. def !(msg: Any): Unit

    Sends msg to this ReplyReactor (asynchronous).

    Sends msg to this ReplyReactor (asynchronous).

    msg

    the message to send

    Definition Classes
    InternalReplyReactorReactorOutputChannel
  2. def !![A](msg: Any, handler: PartialFunction[Any, A]): Future[A]

    Sends msg to this ReplyReactor and immediately returns a future representing the reply value.

    Sends msg to this ReplyReactor and immediately returns a future representing the reply value. The reply is post-processed using the partial function handler. This also allows to recover a more precise type for the reply value.

    msg

    the message to be sent

    handler

    the function to be applied to the response

    returns

    the future

    Definition Classes
    ReactorCanReply → CanReply
  3. def !!(msg: Any): Future[Any]

    Sends msg to this ReplyReactor and immediately returns a future representing the reply value.

    Sends msg to this ReplyReactor and immediately returns a future representing the reply value.

    msg

    the message to be sent

    returns

    the future

    Definition Classes
    ReactorCanReply → CanReply
  4. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  5. def !?(msec: Long, msg: Any): Option[Any]

    Sends msg to this ReplyReactor and awaits reply (synchronous) within msec milliseconds.

    Sends msg to this ReplyReactor and awaits reply (synchronous) within msec milliseconds.

    msec

    the time span before timeout

    msg

    the message to be sent

    returns

    None in case of timeout, otherwise Some(x) where x is the reply

    Definition Classes
    ReactorCanReply → CanReply
  6. def !?(msg: Any): Any

    Sends msg to this ReplyReactor and awaits reply (synchronous).

    Sends msg to this ReplyReactor and awaits reply (synchronous).

    msg

    the message to be sent

    returns

    the reply

    Definition Classes
    ReactorCanReply → CanReply
  7. final def ##(): Int

    Definition Classes
    AnyRef → Any
  8. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from InternalReplyReactor to any2stringadd[InternalReplyReactor] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  9. def ->[B](y: B): (InternalReplyReactor, B)

    Implicit information
    This member is added by an implicit conversion from InternalReplyReactor to ArrowAssoc[InternalReplyReactor] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def continue(): Unit

    Continues with the execution of the closure registered as continuation following andThen.

    Continues with the execution of the closure registered as continuation following andThen. Continues with the execution of the next loop iteration when invoked inside the body of loop or loopWhile.

    Definition Classes
    Combinators
  14. def ensuring(cond: (InternalReplyReactor) ⇒ Boolean, msg: ⇒ Any): InternalReplyReactor

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

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

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

    Implicit information
    This member is added by an implicit conversion from InternalReplyReactor to Ensuring[InternalReplyReactor] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  20. def exceptionHandler: PartialFunction[Exception, Unit]

    This partial function is applied to exceptions that propagate out of this reactor's body.

    This partial function is applied to exceptions that propagate out of this reactor's body.

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  21. def exit(): Nothing

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from InternalReplyReactor to StringFormat[InternalReplyReactor] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  24. def forward(msg: Any): Unit

    Forwards msg to this ReplyReactor (asynchronous).

    Forwards msg to this ReplyReactor (asynchronous).

    msg

    the message to forward

    Definition Classes
    InternalReplyReactorReactorOutputChannel
  25. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  26. def getState: Actor.State.Value

    Returns the execution state of this ReplyReactor.

    Returns the execution state of this ReplyReactor.

    returns

    the execution state

    Definition Classes
    InternalReplyReactorReactor
  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. def internalSender: OutputChannel[Any]

    Returns the ReplyReactor which sent the last received message.

    Returns the ReplyReactor which sent the last received message.

    Attributes
    protected[scala.actors]
  29. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  30. def loop(body: ⇒ Unit): Unit

    Repeatedly executes body.

    Repeatedly executes body.

    body

    the block to be executed

    Definition Classes
    Combinators
  31. def loopWhile(cond: ⇒ Boolean)(body: ⇒ Unit): Unit

    Repeatedly executes body while the condition cond is true.

    Repeatedly executes body while the condition cond is true.

    cond

    the condition to test

    body

    the block to be executed

    Definition Classes
    Combinators
  32. def mailboxSize: Int

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  33. implicit def mkBody[A](body: ⇒ A): Body[A]

    Enables the composition of suspendable closures using andThen, loop, loopWhile, etc.

    Enables the composition of suspendable closures using andThen, loop, loopWhile, etc.

    Definition Classes
    Reactor → Combinators
  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def react(handler: PartialFunction[Any, Unit]): Nothing

    Receives a message from this ReplyReactor's mailbox.

    Receives a message from this ReplyReactor's mailbox.

    This method never returns. Therefore, the rest of the computation has to be contained in the actions of the partial function.

    handler

    a partial function with message patterns and actions

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalReplyReactorReactor
  38. def reactWithin(msec: Long)(handler: PartialFunction[Any, Unit]): Nothing

    Receives a message from this ReplyReactor's mailbox within a certain time span.

    Receives a message from this ReplyReactor's mailbox within a certain time span.

    This method never returns. Therefore, the rest of the computation has to be contained in the actions of the partial function.

    msec

    the time span before timeout

    handler

    a partial function with message patterns and actions

    Attributes
    protected[scala.actors]
  39. def receiver: Actor

    Returns the Actor that is receiving from this reactor.

    Returns the Actor that is receiving from this reactor.

    Definition Classes
    ReactorOutputChannel
  40. def reply(msg: Any): Unit

    Replies with msg to the sender.

    Replies with msg to the sender.

    Attributes
    protected[scala.actors]
  41. def restart(): Unit

    Restarts this reactor.

    Restarts this reactor.

    Definition Classes
    Reactor
    Exceptions thrown
    java.lang.IllegalStateException

    if the reactor is not in state Actor.State.Terminated

  42. def scheduler: IScheduler

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  43. def send(msg: Any, replyTo: OutputChannel[Any]): Unit

    Sends msg to this reactor (asynchronous) supplying explicit reply destination.

    Sends msg to this reactor (asynchronous) supplying explicit reply destination.

    msg

    the message to send

    replyTo

    the reply destination

    Definition Classes
    ReactorOutputChannel
  44. def start(): Reactor[Any]

    Starts this reactor.

    Starts this reactor. This method is idempotent.

    Definition Classes
    Reactor
  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  46. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def [B](y: B): (InternalReplyReactor, B)

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

Inherited from ReactorCanReply

Inherited from CanReply[Any, Any]

Inherited from Reactor[Any]

Inherited from Combinators

Inherited from OutputChannel[Any]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from InternalReplyReactor to any2stringadd[InternalReplyReactor]

Inherited by implicit conversion StringFormat from InternalReplyReactor to StringFormat[InternalReplyReactor]

Inherited by implicit conversion Ensuring from InternalReplyReactor to Ensuring[InternalReplyReactor]

Inherited by implicit conversion ArrowAssoc from InternalReplyReactor to ArrowAssoc[InternalReplyReactor]

Ungrouped