scala.actors

ReplyReactor

trait ReplyReactor extends InternalReplyReactor

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.

Source
ReplyReactor.scala
Linear Supertypes
InternalReplyReactor, 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. ReplyReactor
  2. InternalReplyReactor
  3. ReactorCanReply
  4. CanReply
  5. Reactor
  6. Combinators
  7. OutputChannel
  8. AnyRef
  9. Any
Implicitly
  1. by StringAdd
  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 ReplyReactor's behavior is specified by implementing this method.

    The ReplyReactor'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: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  6. 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
  7. 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
  8. final def ##(): Int

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

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

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

    Definition Classes
    AnyRef
  12. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. 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
  16. def ensuring(cond: (ReplyReactor) ⇒ Boolean, msg: ⇒ Any): ReplyReactor

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

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

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

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

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

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

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

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

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

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

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

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from ReplyReactor to StringFormat[ReplyReactor] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  26. 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
  27. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  28. 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
  29. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  30. 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]
    Definition Classes
    InternalReplyReactor
  31. final def isInstanceOf[T0]: Boolean

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

    Repeatedly executes body.

    Repeatedly executes body.

    body

    the block to be executed

    Definition Classes
    Combinators
  33. 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
  34. def mailboxSize: Int

    Attributes
    protected[scala.actors]
    Definition Classes
    Reactor
  35. 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
  36. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  39. 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
  40. 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]
    Definition Classes
    InternalReplyReactor
  41. def receiver: Actor

    Returns the Actor that is receiving from this ReplyReactor.

    Returns the Actor that is receiving from this ReplyReactor.

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

    Replies with msg to the sender.

    Replies with msg to the sender.

    Attributes
    protected[scala.actors]
    Definition Classes
    InternalReplyReactor
  43. def restart(): Unit

    Restarts this ReplyReactor.

    Restarts this ReplyReactor.

    Definition Classes
    Reactor
    Exceptions thrown
    java.lang.IllegalStateException

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

  44. def scheduler: IScheduler

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

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

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

    msg

    the message to send

    replyTo

    the reply destination

    Definition Classes
    ReactorOutputChannel
  46. def sender: OutputChannel[Any]

    Attributes
    protected[scala.actors]
  47. def start(): Reactor[Any]

    Starts this ReplyReactor.

    Starts this ReplyReactor. This method is idempotent.

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

    Definition Classes
    AnyRef
  49. def toString(): String

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

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

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

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

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

Inherited from InternalReplyReactor

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 StringAdd from ReplyReactor to StringAdd[ReplyReactor]

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

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

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

Ungrouped