| WithBoundedStash Interface |
Note: This API is now obsolete.
Lets the
StashFactory know that this Actor needs stash support
with restricted 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)
Syntax[ObsoleteAttribute("Bounded stashing is not yet implemented. Unbounded stashing will be used instead")]
public interface WithBoundedStash : IActorStash,
RequiresMessageQueue<BoundedDequeBasedMessageQueueSemantics><ObsoleteAttribute("Bounded stashing is not yet implemented. Unbounded stashing will be used instead")>
Public Interface WithBoundedStash
Inherits IActorStash, RequiresMessageQueue(Of BoundedDequeBasedMessageQueueSemantics)[ObsoleteAttribute(L"Bounded stashing is not yet implemented. Unbounded stashing will be used instead")]
public interface class WithBoundedStash : IActorStash,
RequiresMessageQueue<BoundedDequeBasedMessageQueueSemantics^>
[<ObsoleteAttribute("Bounded stashing is not yet implemented. Unbounded stashing will be used instead")>]
type WithBoundedStash =
interface
interface IActorStash
interface RequiresMessageQueue<BoundedDequeBasedMessageQueueSemantics>
endThe WithBoundedStash 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