akka.config

Supervision

object Supervision extends AnyRef

Configuration classes - not to be used as messages.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Supervision
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class AllForOneStrategy (trapExit: List[Class[_ <: Throwable]], maxNrOfRetries: Option[Int], withinTimeRange: Option[Int]) extends FaultHandlingStrategy with Product with Serializable

    Restart all actors linked to the same supervisor when one fails, trapExit = which Throwables should be intercepted maxNrOfRetries = the number of times an actor is allowed to be restarted withinTimeRange = millisecond time window for maxNrOfRetries, negative means no window

  2. class ConfigElement extends AnyRef

    Attributes
    sealed abstract
  3. class FaultHandlingStrategy extends ConfigElement

    Attributes
    sealed abstract
  4. class LifeCycle extends ConfigElement

    Attributes
    sealed abstract
  5. case class OneForOneStrategy (trapExit: List[Class[_ <: Throwable]], maxNrOfRetries: Option[Int], withinTimeRange: Option[Int]) extends FaultHandlingStrategy with Product with Serializable

    Restart an actor when it fails trapExit = which Throwables should be intercepted maxNrOfRetries = the number of times an actor is allowed to be restarted withinTimeRange = millisecond time window for maxNrOfRetries, negative means no window

  6. class Server extends ConfigElement

    Attributes
    abstract
  7. class Supervise extends Server

  8. case class SuperviseTypedActor (_intf: Class[_], target: Class[_], lifeCycle: LifeCycle, timeout: Long, _dispatcher: MessageDispatcher, _remoteAddress: RemoteAddress) extends Server with Product with Serializable

  9. case class SupervisorConfig (restartStrategy: FaultHandlingStrategy, worker: List[Server], maxRestartsHandler: (ActorRef, MaximumNumberOfRestartsWithinTimeRangeReached) ⇒ Unit) extends Server with Product with Serializable

Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. object AllForOneStrategy extends Serializable

  7. object NoFaultHandlingStrategy extends FaultHandlingStrategy with Product with Serializable

  8. object OneForOneStrategy extends Serializable

  9. object Permanent extends LifeCycle with Product with Serializable

  10. object Supervise extends AnyRef

  11. object Temporary extends LifeCycle with Product with Serializable

  12. object UndefinedLifeCycle extends LifeCycle with Product with Serializable

  13. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  14. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  16. def equals (arg0: Any): Boolean

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

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  19. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  20. def isInstanceOf [T0] : Boolean

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

    Attributes
    final
    Definition Classes
    AnyRef
  22. def noFaultHandlingStrategy : akka.config.Supervision.NoFaultHandlingStrategy.type

  23. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  24. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  25. def permanent (): LifeCycle

  26. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  27. def temporary (): LifeCycle

  28. def toString (): String

    Definition Classes
    AnyRef → Any
  29. def undefinedLifeCycle (): LifeCycle

  30. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any