Package

akka

actor

Permalink

package actor

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. actor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class AbstractActorWithTimers extends AbstractActor with Timers

    Permalink

    Java API: Support for scheduled self messages via TimerScheduler.

    Java API: Support for scheduled self messages via TimerScheduler.

    Timers are bound to the lifecycle of the actor that owns it, and thus are cancelled automatically when it is restarted or stopped.

  2. abstract class TimerScheduler extends AnyRef

    Permalink

    Support for scheduled self messages in an actor.

    Support for scheduled self messages in an actor. It is used by mixing in trait Timers in Scala or extending AbstractActorWithTimers in Java.

    Timers are bound to the lifecycle of the actor that owns it, and thus are cancelled automatically when it is restarted or stopped.

    TimerScheduler is not thread-safe, i.e. it must only be used within the actor that owns it.

    Annotations
    @DoNotInherit()
  3. trait Timers extends Actor

    Permalink

    Scala API: Mix in Timers into your Actor to get support for scheduled self messages via TimerScheduler.

    Scala API: Mix in Timers into your Actor to get support for scheduled self messages via TimerScheduler.

    Timers are bound to the lifecycle of the actor that owns it, and thus are cancelled automatically when it is restarted or stopped.

Value Members

  1. implicit def actorRef2Scala(ref: ActorRef): ScalaActorRef

    Permalink
  2. implicit def scala2ActorRef(ref: ScalaActorRef): ActorRef

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped