Class UntypedActorWithUnrestrictedStash
Actor base class with Stash
that does not enforce any mailbox type. The proper mailbox has to be configured
manually, and the mailbox should extend the IDequeBasedMessageQueueSemantics marker interface.
See UntypedActorWithStash for details on how Stash
works.
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public abstract class UntypedActorWithUnrestrictedStash : UntypedActor, IInternalActor, IWithUnrestrictedStash, IActorStash
Properties
| Edit this page View SourceStash
Gets or sets the stash. This will be automatically populated by the framework AFTER the constructor has been run. Implement this as an auto property.
Declaration
public IStash Stash { get; set; }
Property Value
Type | Description |
---|---|
IStash | The stash. |