akka.contrib.pattern

ReliableProxy

Related Docs: class ReliableProxy | package pattern

object ReliableProxy

Source
ReliableProxy.scala
Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ReliableProxy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Message(msg: Any, sender: ActorRef, serial: Int) extends Product with Serializable

  2. case class ProxyTerminated(actor: ActorRef, outstanding: Unsent) extends Product with Serializable

    ProxyTerminated is sent to transition subscribers during postStop.

    ProxyTerminated is sent to transition subscribers during postStop. Any outstanding unsent messages are contained the Unsent object.

  3. class Receiver extends Actor with ReliableProxyDebugLogging

  4. sealed trait State extends AnyRef

  5. case class TargetChanged(ref: ActorRef) extends Product with Serializable

    TargetChanged is sent to transition subscribers when the initial connection is made the target and when the target ActorRef has changed (for example, the target system crashed and has been restarted).

  6. case class Unsent(queue: Vector[Message]) extends Product with Serializable

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. object Active extends State with Product with Serializable

  5. object Connecting extends State with Product with Serializable

  6. object Idle extends State with Product with Serializable

  7. val active: Active.type

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def compare(a: Int, b: Int): Int

    Wrap-around aware comparison of integers: differences limited to 2**31-1 in magnitude will work correctly.

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  16. val idle: Idle.type

  17. final def isInstanceOf[T0]: Boolean

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

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

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

    Definition Classes
    AnyRef
  21. def props(targetPath: ActorPath, retryAfter: FiniteDuration): Props

    Props with no reconnections.

    Props with no reconnections. Arguments are detailed in the akka.contrib.pattern.ReliableProxy constructor.

  22. def props(targetPath: ActorPath, retryAfter: FiniteDuration, reconnectAfter: FiniteDuration): Props

    Props with no limit on reconnections.

    Props with no limit on reconnections. Arguments are detailed in the akka.contrib.pattern.ReliableProxy constructor.

  23. def props(targetPath: ActorPath, retryAfter: FiniteDuration, reconnectAfter: FiniteDuration, maxReconnects: Int): Props

    Java API Props.

    Java API Props. Arguments are detailed in the akka.contrib.pattern.ReliableProxy constructor.

  24. def props(targetPath: ActorPath, retryAfter: FiniteDuration, reconnectAfter: Option[FiniteDuration], maxReconnects: Option[Int]): Props

    Scala API Props.

    Scala API Props. Arguments are detailed in the akka.contrib.pattern.ReliableProxy constructor.

  25. def receiver(target: ActorRef, currentSerial: Int): Props

  26. val reconnecting: Connecting.type

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped