Packages

c

akka.actor

ExtendedActorSystem

abstract class ExtendedActorSystem extends ActorSystem

More powerful interface to the actor system’s implementation which is presented to extensions (see akka.actor.Extension).

Important Notice:

This class is not meant to be extended by user code. If you want to actually roll your own Akka, beware that you are completely on your own in that case!

Annotations
@DoNotInherit()
Source
ActorSystem.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtendedActorSystem
  2. ActorSystem
  3. ClassicActorSystemProvider
  4. ActorRefFactory
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExtendedActorSystem()

Abstract Value Members

  1. abstract def /(name: Iterable[String]): ActorPath

    Construct a path below the application guardian to be used with ActorSystem#actorSelection.

    Construct a path below the application guardian to be used with ActorSystem#actorSelection.

    Definition Classes
    ActorSystem
  2. abstract def /(name: String): ActorPath

    Construct a path below the application guardian to be used with ActorSystem#actorSelection.

    Construct a path below the application guardian to be used with ActorSystem#actorSelection.

    Definition Classes
    ActorSystem
  3. abstract def actorOf(props: Props, name: String): ActorRef

    Create new actor as child of this context with the given name, which must not be null, empty or start with “$”.

    Create new actor as child of this context with the given name, which must not be null, empty or start with “$”. If the given name is already in use, an InvalidActorNameException is thrown.

    See akka.actor.Props for details on how to obtain a Props object.

    Definition Classes
    ActorRefFactory
    Exceptions thrown

    UnsupportedOperationException if invoked on an ActorSystem that uses a custom user guardian

    akka.ConfigurationException if deployment, dispatcher or mailbox configuration is wrong

    akka.actor.InvalidActorNameException if the given name is invalid or already in use

  4. abstract def actorOf(props: Props): ActorRef

    Create new actor as child of this context and give it an automatically generated name (currently similar to base64-encoded integer count, reversed and with “$” prepended, may change in the future).

    Create new actor as child of this context and give it an automatically generated name (currently similar to base64-encoded integer count, reversed and with “$” prepended, may change in the future).

    See akka.actor.Props for details on how to obtain a Props object.

    Definition Classes
    ActorRefFactory
    Exceptions thrown

    UnsupportedOperationException if invoked on an ActorSystem that uses a custom user guardian

    akka.ConfigurationException if deployment, dispatcher or mailbox configuration is wrong

  5. abstract def classicSystem: ActorSystem

    Allows access to the classic akka.actor.ActorSystem even for akka.actor.typed.ActorSystem[_]s.

    Allows access to the classic akka.actor.ActorSystem even for akka.actor.typed.ActorSystem[_]s.

    Definition Classes
    ClassicActorSystemProvider
  6. abstract def deadLetters: ActorRef

    Actor reference where messages are re-routed to which were addressed to stopped or non-existing actors.

    Actor reference where messages are re-routed to which were addressed to stopped or non-existing actors. Delivery to this actor is done on a best effort basis and hence not strictly guaranteed.

    Definition Classes
    ActorSystem
  7. implicit abstract def dispatcher: ExecutionContextExecutor

    Default dispatcher as configured.

    Default dispatcher as configured. This dispatcher is used for all actors in the actor system which do not have a different dispatcher configured explicitly. Importing this member will place the default MessageDispatcher in scope.

    Definition Classes
    ActorSystemActorRefFactory
  8. abstract def dispatchers: Dispatchers

    Helper object for looking up configured dispatchers.

    Helper object for looking up configured dispatchers.

    Definition Classes
    ActorSystem
  9. abstract def dynamicAccess: DynamicAccess

    ClassLoader wrapper which is used for reflective accesses internally.

    ClassLoader wrapper which is used for reflective accesses internally. This is set to use the context class loader, if one is set, or the class loader which loaded the ActorSystem implementation. The context class loader is also set on all threads created by the ActorSystem, if one was set during creation.

  10. abstract def eventStream: EventStream

    Main event bus of this actor system, used for example for logging.

    Main event bus of this actor system, used for example for logging.

    Definition Classes
    ActorSystem
  11. abstract def extension[T <: Extension](ext: ExtensionId[T]): T

    Returns the payload that is associated with the provided extension throws an IllegalStateException if it is not registered.

    Returns the payload that is associated with the provided extension throws an IllegalStateException if it is not registered. This method can potentially block, waiting for the initialization of the payload, if is in the process of registration from another Thread of execution

    Definition Classes
    ActorSystem
  12. abstract def getWhenTerminated: CompletionStage[Terminated]

    Returns a CompletionStage which will be completed after the ActorSystem has been terminated and termination hooks have been executed.

    Returns a CompletionStage which will be completed after the ActorSystem has been terminated and termination hooks have been executed. If you registered any callback with ActorSystem#registerOnTermination, the returned CompletionStage from this method will not complete until all the registered callbacks are finished. Be careful to not schedule any operations, such as thenRunAsync, on the dispatchers (Executor) of this actor system as they will have been shut down before this CompletionStage completes.

    Definition Classes
    ActorSystem
  13. abstract def guardian: InternalActorRef

    The top-level supervisor of all actors created using system.actorOf(...).

    The top-level supervisor of all actors created using system.actorOf(...).

    Definition Classes
    ExtendedActorSystemActorRefFactory
  14. abstract def hasExtension(ext: ExtensionId[_ <: Extension]): Boolean

    Returns whether the specified extension is already registered, this method can potentially block, waiting for the initialization of the payload, if is in the process of registration from another Thread of execution

    Returns whether the specified extension is already registered, this method can potentially block, waiting for the initialization of the payload, if is in the process of registration from another Thread of execution

    Definition Classes
    ActorSystem
  15. abstract def log: LoggingAdapter

    Convenient logging adapter for logging to the ActorSystem#eventStream.

    Convenient logging adapter for logging to the ActorSystem#eventStream.

    Definition Classes
    ActorSystem
  16. abstract def logConfiguration(): Unit

    Log the configuration.

    Log the configuration.

    Definition Classes
    ActorSystem
  17. abstract def logFilter: LoggingFilter

    Filter of log events that is used by the LoggingAdapter before publishing log events to the eventStream

  18. abstract def lookupRoot: InternalActorRef

    INTERNAL API

    INTERNAL API

    Attributes
    protected
    Definition Classes
    ActorRefFactory
  19. abstract def mailboxes: Mailboxes

    Helper object for looking up configured mailbox types.

    Helper object for looking up configured mailbox types.

    Definition Classes
    ActorSystem
  20. abstract def name: String

    The name of this actor system, used to distinguish multiple ones within the same JVM & class loader.

    The name of this actor system, used to distinguish multiple ones within the same JVM & class loader.

    Definition Classes
    ActorSystem
  21. abstract def provider: ActorRefProvider

    The ActorRefProvider is the only entity which creates all actor references within this actor system.

    The ActorRefProvider is the only entity which creates all actor references within this actor system.

    Definition Classes
    ExtendedActorSystemActorRefFactory
  22. abstract def registerExtension[T <: Extension](ext: ExtensionId[T]): T

    Registers the provided extension and creates its payload, if this extension isn't already registered This method has putIfAbsent-semantics, this method can potentially block, waiting for the initialization of the payload, if is in the process of registration from another Thread of execution

    Registers the provided extension and creates its payload, if this extension isn't already registered This method has putIfAbsent-semantics, this method can potentially block, waiting for the initialization of the payload, if is in the process of registration from another Thread of execution

    Definition Classes
    ActorSystem
  23. abstract def registerOnTermination(code: Runnable): Unit

    Java API: Register a block of code (callback) to run after ActorSystem.terminate has been issued and all actors in this actor system have been stopped.

    Java API: Register a block of code (callback) to run after ActorSystem.terminate has been issued and all actors in this actor system have been stopped. Multiple code blocks may be registered by calling this method multiple times. The callbacks will be run sequentially in reverse order of registration, i.e. last registration is run first. Note that ActorSystem will not terminate until all the registered callbacks are finished.

    Throws a RejectedExecutionException if the System has already been terminated or if termination has been initiated.

    Definition Classes
    ActorSystem
  24. abstract def registerOnTermination[T](code: => T): Unit

    Register a block of code (callback) to run after ActorSystem.terminate has been issued and all actors in this actor system have been stopped.

    Register a block of code (callback) to run after ActorSystem.terminate has been issued and all actors in this actor system have been stopped. Multiple code blocks may be registered by calling this method multiple times. The callbacks will be run sequentially in reverse order of registration, i.e. last registration is run first. Note that ActorSystem will not terminate until all the registered callbacks are finished.

    Throws a RejectedExecutionException if the System has already been terminated or if termination has been initiated.

    Scala API

    Definition Classes
    ActorSystem
  25. abstract def scheduler: Scheduler

    Light-weight scheduler for running asynchronous tasks after some deadline in the future.

    Light-weight scheduler for running asynchronous tasks after some deadline in the future. Not terribly precise but cheap.

    Definition Classes
    ActorSystem
  26. abstract def settings: Settings

    The core settings extracted from the supplied configuration.

    The core settings extracted from the supplied configuration.

    Definition Classes
    ActorSystem
  27. abstract def stop(actor: ActorRef): Unit

    Stop the actor pointed to by the given akka.actor.ActorRef; this is an asynchronous operation, i.e.

    Stop the actor pointed to by the given akka.actor.ActorRef; this is an asynchronous operation, i.e. involves a message send. If this method is applied to the self reference from inside an Actor then that Actor is guaranteed to not process any further messages after this call; please note that the processing of the current message will continue, this method does not immediately terminate this actor.

    Definition Classes
    ActorRefFactory
  28. abstract def systemActorOf(props: Props, name: String): ActorRef

    Create an actor in the "/system" namespace.

    Create an actor in the "/system" namespace. This actor will be shut down during system.terminate only after all user actors have terminated.

    This is only intended to be used by libraries (and Akka itself). Applications should use ordinary actorOf.

  29. abstract def systemGuardian: InternalActorRef

    The top-level supervisor of all system-internal services like logging.

  30. abstract def systemImpl: ActorSystemImpl

    INTERNAL API

    INTERNAL API

    Attributes
    protected
    Definition Classes
    ActorRefFactory
  31. abstract def terminate(): Future[Terminated]

    Terminates this actor system by running CoordinatedShutdown with reason CoordinatedShutdown.ActorSystemTerminateReason.

    Terminates this actor system by running CoordinatedShutdown with reason CoordinatedShutdown.ActorSystemTerminateReason.

    If akka.coordinated-shutdown.run-by-actor-system-terminate is configured to off it will not run CoordinatedShutdown, but the ActorSystem and its actors will still be terminated.

    This will stop the guardian actor, which in turn will recursively stop all its child actors, and finally the system guardian (below which the logging actors reside) and then execute all registered termination handlers (see ActorSystem#registerOnTermination). Be careful to not schedule any operations on completion of the returned future using the dispatcher of this actor system as it will have been shut down before the future completes.

    Definition Classes
    ActorSystem
  32. abstract def threadFactory: ThreadFactory

    A ThreadFactory that can be used if the transport needs to create any Threads

  33. abstract def uid: Long

    Random uid assigned at ActorSystem startup.

    Random uid assigned at ActorSystem startup. When using Akka Cluster this uid is used together with an akka.actor.Address to be able to distinguish restarted actor system using the same host and port.

  34. abstract def whenTerminated: Future[Terminated]

    Returns a Future which will be completed after the ActorSystem has been terminated and termination hooks have been executed.

    Returns a Future which will be completed after the ActorSystem has been terminated and termination hooks have been executed. If you registered any callback with ActorSystem#registerOnTermination, the returned Future from this method will not complete until all the registered callbacks are finished. Be careful to not schedule any operations, such as onComplete, on the dispatchers (ExecutionContext) of this actor system as they will have been shut down before this future completes.

    Definition Classes
    ActorSystem

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toany2stringadd[ExtendedActorSystem] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ExtendedActorSystem, B)
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toArrowAssoc[ExtendedActorSystem] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def actorSelection(path: ActorPath): ActorSelection

    Construct an akka.actor.ActorSelection from the given path, which is parsed for wildcards (these are replaced by regular expressions internally).

    Construct an akka.actor.ActorSelection from the given path, which is parsed for wildcards (these are replaced by regular expressions internally). No attempt is made to verify the existence of any part of the supplied path, it is recommended to send a message and gather the replies in order to resolve the matching set of actors.

    Definition Classes
    ActorRefFactory
  7. def actorSelection(path: String): ActorSelection

    Construct an akka.actor.ActorSelection from the given path, which is parsed for wildcards (these are replaced by regular expressions internally).

    Construct an akka.actor.ActorSelection from the given path, which is parsed for wildcards (these are replaced by regular expressions internally). No attempt is made to verify the existence of any part of the supplied path, it is recommended to send a message and gather the replies in order to resolve the matching set of actors.

    Definition Classes
    ActorRefFactory
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def child(child: String): ActorPath

    Java API: Create a new child actor path.

    Java API: Create a new child actor path.

    Definition Classes
    ActorSystem
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  11. def descendant(names: Iterable[String]): ActorPath

    Java API: Recursively create a descendant’s path by appending all child names.

    Java API: Recursively create a descendant’s path by appending all child names.

    Definition Classes
    ActorSystem
  12. def ensuring(cond: (ExtendedActorSystem) => Boolean, msg: => Any): ExtendedActorSystem
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toEnsuring[ExtendedActorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (ExtendedActorSystem) => Boolean): ExtendedActorSystem
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toEnsuring[ExtendedActorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): ExtendedActorSystem
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toEnsuring[ExtendedActorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): ExtendedActorSystem
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toEnsuring[ExtendedActorSystem] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  19. def getDispatcher: ExecutionContextExecutor

    Java API: Default dispatcher as configured.

    Java API: Default dispatcher as configured. This dispatcher is used for all actors in the actor system which do not have a different dispatcher configured explicitly. Importing this member will place the default MessageDispatcher in scope.

    Definition Classes
    ActorSystem
  20. def getEventStream: EventStream

    Java API: Main event bus of this actor system, used for example for logging.

    Java API: Main event bus of this actor system, used for example for logging.

    Definition Classes
    ActorSystem
  21. def getScheduler: Scheduler

    Java API: Light-weight scheduler for running asynchronous tasks after some deadline in the future.

    Java API: Light-weight scheduler for running asynchronous tasks after some deadline in the future. Not terribly precise but cheap.

    Definition Classes
    ActorSystem
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  27. val startTime: Long

    Start-up time in milliseconds since the epoch.

    Start-up time in milliseconds since the epoch.

    Definition Classes
    ActorSystem
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def uptime: Long

    Up-time of this actor system in seconds.

    Up-time of this actor system in seconds.

    Definition Classes
    ActorSystem
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toStringFormat[ExtendedActorSystem] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (ExtendedActorSystem, B)
    Implicit
    This member is added by an implicit conversion from ExtendedActorSystem toArrowAssoc[ExtendedActorSystem] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from ActorSystem

Inherited from ActorRefFactory

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromExtendedActorSystem to any2stringadd[ExtendedActorSystem]

Inherited by implicit conversion StringFormat fromExtendedActorSystem to StringFormat[ExtendedActorSystem]

Inherited by implicit conversion Ensuring fromExtendedActorSystem to Ensuring[ExtendedActorSystem]

Inherited by implicit conversion ArrowAssoc fromExtendedActorSystem to ArrowAssoc[ExtendedActorSystem]

Ungrouped