Object/Class

akka.contrib.pattern

ReliableProxy

Related Docs: class ReliableProxy | package pattern

Permalink

object ReliableProxy

Annotations
@deprecated
Deprecated

(Since version 2.5.0) Use AtLeastOnceDelivery instead

Source
ReliableProxy.scala
Linear Supertypes
AnyRef, Any
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

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

    Permalink

    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

    Permalink
  4. sealed trait State extends AnyRef

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

    Permalink

    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

    Permalink

Value Members

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

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

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

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

    Permalink
  5. object Connecting extends State with Product with Serializable

    Permalink
  6. object Idle extends State with Product with Serializable

    Permalink
  7. val active: Active.type

    Permalink
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

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

    Permalink

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

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

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

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

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

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

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

    Permalink
  17. final def isInstanceOf[T0]: Boolean

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

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

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

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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    Scala API Props.

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

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

    Permalink
  26. val reconnecting: Connecting.type

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

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped