Packages

object ReliableProxy

Source
ReliableProxy.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReliableProxy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Message (msg: Any, sender: ActorRef, serial: Int) extends Product with Serializable
  2. final 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. final 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. final 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. val active: Active.type
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def compare(a: Int, b: Int): Int

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

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. val idle: Idle.type
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  18. 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.

  19. 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.

  20. 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.

  21. 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.

  22. def receiver(target: ActorRef, currentSerial: Int): Props
  23. val reconnecting: Connecting.type
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. object Active extends State with Product with Serializable
  30. object Connecting extends State with Product with Serializable
  31. object Idle extends State with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped