Click or drag to resize
Akka.NETExtendedActorSystem Class
More powerful interface to the actor system’s implementation which is presented to extensions (see IExtension).
Remarks
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!

Inheritance Hierarchy

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public abstract class ExtendedActorSystem : ActorSystem

The ExtendedActorSystem type exposes the following members.

Constructors
  NameDescription
Protected methodExtendedActorSystem
Initializes a new instance of the ExtendedActorSystem class
Top
Properties
  NameDescription
Public propertyActorPipelineResolver
Gets the actor producer pipeline resolver for current actor system. It may be used by Akka plugins to inject custom behavior directly into actor creation chain.
Public propertyDeadLetters
Gets the dead letters.
(Inherited from ActorSystem.)
Public propertyDispatchers
Gets the dispatchers.
(Inherited from ActorSystem.)
Public propertyEventStream
Gets the event stream.
(Inherited from ActorSystem.)
Public propertyGuardian
Gets the top-level supervisor of all user actors created using system.ActorOf(...)
Public propertyLog
Gets the log
(Inherited from ActorSystem.)
Public propertyLookupRoot
The RootGuardianActorRef, used as the lookup for IActorRef resolutions.
Public propertyMailboxes
Gets the mailboxes.
(Inherited from ActorSystem.)
Public propertyName
Gets the name of this system.
(Inherited from ActorSystem.)
Public propertyProvider
Gets the provider.
Public propertyScheduler
Gets the scheduler.
(Inherited from ActorSystem.)
Public propertySerialization
Gets the serialization.
(Inherited from ActorSystem.)
Public propertySettings
Gets the settings.
(Inherited from ActorSystem.)
Public propertyStartTime
Start-up time since the epoch.
(Inherited from ActorSystem.)
Public propertySystemGuardian
Gets the top-level supervisor of all system-internal services like logging.
Public propertyUptime
Up-time of this actor system.
(Inherited from ActorSystem.)
Public propertyWhenTerminated
Returns a task which will be completed after the ActorSystem has been terminated and termination hooks have been executed. Be careful to not schedule any operations on the `dispatcher` of this actor system as it will have been shut down before this task completes.
(Inherited from ActorSystem.)
Top
Methods
  NameDescription
Public methodAbort
Aggressively terminates an ActorSystem without waiting for the normal shutdown process to run as-is.
Public methodActorOf
Interface IActorRefFactory
(Inherited from ActorSystem.)
Public methodActorSelection(String)
Interface IActorRefFactory
(Inherited from ActorSystem.)
Public methodActorSelection(ActorPath)
Interface IActorRefFactory
(Inherited from ActorSystem.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from ActorSystem.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetExtension(IExtensionId)
Retrieves the specified extension that is registered to this actor system.
(Inherited from ActorSystem.)
Public methodGetExtensionT
Retrieves an extension with the specified type that is registered to this actor system.
(Inherited from ActorSystem.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasExtension(Type)
Determines whether this actor system has an extension with the specified type.
(Inherited from ActorSystem.)
Public methodHasExtensionT
Determines whether this actor system has the specified extension.
(Inherited from ActorSystem.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRegisterExtension
Registers the specified extension with this actor system.
(Inherited from ActorSystem.)
Public methodRegisterOnTermination

Registers a block of code (callback) to run after ActorSystem.shutdown 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.

(Inherited from ActorSystem.)
Public methodStop
Stops the specified actor permanently.
(Inherited from ActorSystem.)
Public methodSystemActorOf(Props, String)
Creates a new system actor in the "/system" namespace. This actor will be shut down during system shutdown only after all user actors have terminated.
Public methodSystemActorOfTActor(String)
Creates a new system actor in the "/system" namespace. This actor will be shut down during system shutdown only after all user actors have terminated.
Public methodTerminate

Terminates this actor system. This will stop the guardian actor, which in turn will recursively stop all its child actors, then the system guardian (below which the logging actors reside) and the execute all registered termination handlers (RegisterOnTermination(Action)).

Be careful to not schedule any operations on completion of the returned task using the `dispatcher` of this actor system as it will have been shut down before the task completes.

(Inherited from ActorSystem.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTryGetExtension(Type, Object)
Tries to retrieve an extension with the specified type.
(Inherited from ActorSystem.)
Public methodTryGetExtensionT(T)
Tries to retrieve an extension with the specified type
(Inherited from ActorSystem.)
Top
Extension Methods
  NameDescription
Public Extension MethodAddDependencyResolver
Registers a dependency resolver with a given actor system.
(Defined by Extensions.)
Public Extension MethodAsInstanceOfT
TBD
(Defined by Extensions.)
Public Extension MethodDI
Creates an adapter used to generate Props configuration objects using the DI extension using a given actor system.
(Defined by Extensions.)
Public Extension MethodDistributedData
Returns th DistributedData(ActorSystem) extension configured for provided system. Configuration is supplied automatically from HOCON config under the path: `akka.cluster.distributed-data`
(Defined by DistributedDataExtensions.)
Public Extension MethodMatchOverloaded.
Matches the specified target.
(Defined by PatternMatch.)
Public Extension MethodMatchTOverloaded.
Matches the specified target and return a result of target processing.
(Defined by PatternMatch.)
Public Extension MethodReadJournalForTJournal (Defined by PersistenceQueryExtensions.)
Public Extension MethodTcp
TBD
(Defined by TcpExtensions.)
Public Extension MethodTcpStream
TBD
(Defined by TcpStreamExtensions.)
Public Extension MethodUdp
TBD
(Defined by UdpExtensions.)
Public Extension MethodWithExtensionTOverloaded.
Retrieves the extension specified by a given type, T, from a given actor system.
(Defined by ActorSystemWithExtensions.)
Public Extension MethodWithExtensionT(Type)Overloaded.
Retrieves the extension specified by a given type, T, from a given actor system. If the extension does not exist within the actor system, then the extension specified by extensionId is registered to the actor system.
(Defined by ActorSystemWithExtensions.)
Public Extension MethodWithExtensionT, TIOverloaded.
Retrieves the extension specified by a given type, T, from a given actor system. If the extension does not exist within the actor system, then the extension specified by TI is registered to the actor system.
(Defined by ActorSystemWithExtensions.)
Top
See Also