akka.transactor

UntypedTransactor

abstract class UntypedTransactor extends UntypedActor

An UntypedActor version of transactor for using from Java.

Linear Supertypes
UntypedActor, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UntypedTransactor
  2. UntypedActor
  3. Actor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UntypedTransactor()

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Definition Classes
    Actor

Abstract Value Members

  1. abstract def atomically(message: Any): Unit

    The Receive block to run inside the coordinated transaction.

    The Receive block to run inside the coordinated transaction.

    Annotations
    @throws( classOf[Exception] )

Concrete Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def after(message: Any): Unit

    A Receive block that runs after the coordinated transaction.

    A Receive block that runs after the coordinated transaction.

    Annotations
    @throws( classOf[Exception] )
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def before(message: Any): Unit

    A Receive block that runs before the coordinated transaction is entered.

    A Receive block that runs before the coordinated transaction is entered.

    Annotations
    @throws( classOf[Exception] )
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. implicit val context: ActorContext

    Attributes
    protected[akka]
    Definition Classes
    Actor
  11. def coordinate(message: Any): Set[SendTo]

    Override this method to coordinate with other transactors.

    Override this method to coordinate with other transactors. The other transactors are added to the coordinated transaction barrier and sent a Coordinated message. The message to send can be specified or otherwise the same message as received is sent. Use the 'include' and 'sendTo' methods to easily create the set of transactors to be involved.

    Annotations
    @throws( classOf[Exception] )
  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  16. def getContext(): UntypedActorContext

    Definition Classes
    UntypedActor
  17. def getSelf(): ActorRef

    Definition Classes
    UntypedActor
  18. def getSender(): ActorRef

    Definition Classes
    UntypedActor
  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. def include(actor: ActorRef, message: Any): Set[SendTo]

    For including one other actor in this coordinated transaction and specifying the message to send.

    For including one other actor in this coordinated transaction and specifying the message to send. Use as the result in coordinated.

  21. def include(actor: ActorRef): Set[SendTo]

    For including one other actor in this coordinated transaction and sending them the same message as received.

    For including one other actor in this coordinated transaction and sending them the same message as received. Use as the result in coordinated.

  22. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  24. def nobody: Set[SendTo]

    Empty set of transactors to send to.

  25. def normally(message: Any): Boolean

    Bypass transactionality and behave like a normal actor.

    Bypass transactionality and behave like a normal actor.

    Annotations
    @throws( classOf[Exception] )
  26. final def notify(): Unit

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

    Definition Classes
    AnyRef
  28. final def onReceive(message: Any): Unit

    Implement a general pattern for using coordinated transactions.

    Implement a general pattern for using coordinated transactions.

    Definition Classes
    UntypedTransactor → UntypedActor
    Annotations
    @throws( classOf[Exception] )
  29. def postRestart(reason: Throwable): Unit

    Definition Classes
    UntypedActor → Actor
  30. def postStop(): Unit

    Definition Classes
    UntypedActor → Actor
  31. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Definition Classes
    UntypedActor → Actor
  32. def preStart(): Unit

    Definition Classes
    UntypedActor → Actor
  33. final def receive: AbstractPartialFunction[Any, Unit] with Serializable

    Definition Classes
    UntypedActor → Actor
  34. implicit final val self: ActorRef

    Definition Classes
    Actor
  35. def sendTo(actor: ActorRef, message: Any): SendTo

    For including another actor in this coordinated transaction and specifying the message to send.

    For including another actor in this coordinated transaction and specifying the message to send. Use to create the result in coordinated.

  36. def sendTo(actor: ActorRef): SendTo

    For including another actor in this coordinated transaction and sending them the same message as received.

    For including another actor in this coordinated transaction and sending them the same message as received. Use to create the result in coordinated.

  37. final def sender: ActorRef

    Definition Classes
    Actor
  38. def supervisorStrategy: SupervisorStrategy

    Definition Classes
    UntypedActor → Actor
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  40. def toString(): String

    Definition Classes
    AnyRef → Any
  41. def unhandled(message: Any): Unit

    Definition Classes
    Actor
  42. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from UntypedActor

Inherited from Actor

Inherited from AnyRef

Inherited from Any

No Group