Packages

package akka

Lerna Utililities for Akka

Overview

The package provides utilities for Akka (especially Akka classic)

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

Type Members

  1. trait ActorStateBase[Event, State <: ActorStateBase[Event, State]] extends AnyRef

    A trait that represents a base actor state for event sourcing

    A trait that represents a base actor state for event sourcing

    The trait is for a classic actor (not typed). You don't need any more if you use a typed actor.

    Event

    The type of Event that is handled by the actor

    State

    The type of State of the actor

  2. sealed abstract case class ProcessingTimeout extends NoSerializationVerificationNeeded with Product with Serializable

    A class that represents processing timeout

    A class that represents processing timeout

    The deadline is required to distinguish each ProcessingTimeout since the timer is invoked after actor restart flow (specifically receiveRecover -> updateState)

  3. final case class ReplyTo(actorRef: ActorRef) extends AnyVal with Product with Serializable

    A class that represents a reply destination akka.actor.ActorRef

    A class that represents a reply destination akka.actor.ActorRef

    actorRef

    The reply destination actor

Value Members

  1. object AtLeastOnceDelivery

    An object that provides reliable delivery features

  2. object ProcessingTimeout extends Serializable

    An object that provides factory methods of ProcessingTimeout

Inherited from AnyRef

Inherited from Any

Ungrouped