Packages

p

akka

package akka

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class AkkaException extends RuntimeException with Serializable

    Akka base Exception.

    Akka base Exception.

    Annotations
    @SerialVersionUID()
  2. class ConfigurationException extends AkkaException

    This exception is thrown when Akka detects a problem with the provided configuration

  3. sealed abstract class Done extends Serializable

    Typically used together with Future to signal completion but there is no actual value completed.

    Typically used together with Future to signal completion but there is no actual value completed. More clearly signals intent than Unit and is available both from Scala and Java (which Unit is not).

    Annotations
    @DoNotInherit()
  4. sealed abstract class NotUsed extends AnyRef

    This type is used in generic type signatures wherever the actual value is of no importance.

    This type is used in generic type signatures wherever the actual value is of no importance. It is a combination of Scala’s Unit and Java’s Void, which both have different issues when used from the other language. An example use-case is the materialized value of an Akka Stream for cases where no result shall be returned from materialization.

  5. trait OnlyCauseStackTrace extends AnyRef

    Mix in this trait to suppress the StackTrace for the instance of the exception but not the cause, scala.util.control.NoStackTrace suppresses all the StackTraces.

  6. final class UnsupportedAkkaVersion extends RuntimeException

Value Members

  1. object AkkaVersion
  2. object Done extends Done with Product with Serializable
  3. object Main

    Main class to start an akka.actor.ActorSystem with one top level application supervisor actor.

    Main class to start an akka.actor.ActorSystem with one top level application supervisor actor. It will shutdown the actor system when the top level actor is terminated.

  4. object NotUsed extends NotUsed with Product with Serializable
  5. object Version

Ungrouped