Class UnboundedStashImpl
INTERNAL
A stash implementation that is unbounded
Implements
Inherited Members
Namespace: Akka.Actor.Internal
Assembly: Akka.dll
Syntax
public class UnboundedStashImpl : AbstractStash, IStash
Constructors
| Edit this page View SourceUnboundedStashImpl(IActorContext)
INTERNAL
A stash implementation that is bounded
Declaration
public UnboundedStashImpl(IActorContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorContext | context | TBD |
Properties
| Edit this page View SourceCapacity
The capacity of the stash. Configured in the actor's mailbox or dispatcher config.
Declaration
public override int Capacity { get; }
Property Value
| Type | Description |
|---|---|
| int |
Overrides
Remarks
If capacity is negative, then we're using an Unbounded stash.
Edit this page