Click or drag to resize
Akka.NETIWithUnboundedStash Interface
Lets the StashFactory know that this Actor needs stash support with unrestricted storage capacity. You need to add the property:
public IStash Stash { get; set; }

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IWithUnboundedStash : IActorStash, 
	IRequiresMessageQueue<IUnboundedDequeBasedMessageQueueSemantics>

The IWithUnboundedStash type exposes the following members.

Properties
  NameDescription
Public propertyStash
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.
(Inherited from IActorStash.)
Top
See Also