BoundedStashImpl Constructor |
INTERNAL
A stash implementation that is bounded
RemarksNote! Part of internal API. Breaking changes may occur without notice. Use at own risk.
Namespace: Akka.Actor.InternalAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic BoundedStashImpl(
IActorContext context,
int capacity = 100
)
Public Sub New (
context As IActorContext,
Optional capacity As Integer = 100
)
public:
BoundedStashImpl(
IActorContext^ context,
int capacity = 100
)
new :
context : IActorContext *
?capacity : int
(* Defaults:
let _capacity = defaultArg capacity 100
*)
-> BoundedStashImpl
Parameters
- context
- Type: Akka.ActorIActorContext
[Missing <param name="context"/> documentation for "M:Akka.Actor.Internal.BoundedStashImpl.#ctor(Akka.Actor.IActorContext,System.Int32)"]
- capacity (Optional)
- Type: SystemInt32
[Missing <param name="capacity"/> documentation for "M:Akka.Actor.Internal.BoundedStashImpl.#ctor(Akka.Actor.IActorContext,System.Int32)"]
See Also