WithUnboundedStash 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.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic interface WithUnboundedStash : IActorStash,
RequiresMessageQueue<UnboundedDequeBasedMessageQueueSemantics>
Public Interface WithUnboundedStash
Inherits IActorStash, RequiresMessageQueue(Of UnboundedDequeBasedMessageQueueSemantics)
public interface class WithUnboundedStash : IActorStash,
RequiresMessageQueue<UnboundedDequeBasedMessageQueueSemantics^>
type WithUnboundedStash =
interface
interface IActorStash
interface RequiresMessageQueue<UnboundedDequeBasedMessageQueueSemantics>
end
The WithUnboundedStash type exposes the following members.
Properties
| Name | Description |
---|
 | Stash |
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