StashFactoryCreateStash Method (IActorContext, IActorStash) |
[Missing <summary> documentation for "M:Akka.Actor.StashFactory.CreateStash(Akka.Actor.IActorContext,Akka.Actor.IActorStash)"]
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static IStash CreateStash(
this IActorContext context,
IActorStash actorInstance
)
<ExtensionAttribute>
Public Shared Function CreateStash (
context As IActorContext,
actorInstance As IActorStash
) As IStash
public:
[ExtensionAttribute]
static IStash^ CreateStash(
IActorContext^ context,
IActorStash^ actorInstance
)
[<ExtensionAttribute>]
static member CreateStash :
context : IActorContext *
actorInstance : IActorStash -> IStash
Parameters
- context
- Type: Akka.ActorIActorContext
[Missing <param name="context"/> documentation for "M:Akka.Actor.StashFactory.CreateStash(Akka.Actor.IActorContext,Akka.Actor.IActorStash)"]
- actorInstance
- Type: Akka.ActorIActorStash
[Missing <param name="actorInstance"/> documentation for "M:Akka.Actor.StashFactory.CreateStash(Akka.Actor.IActorContext,Akka.Actor.IActorStash)"]
Return Value
Type:
IStash[Missing <returns> documentation for "M:Akka.Actor.StashFactory.CreateStash(Akka.Actor.IActorContext,Akka.Actor.IActorStash)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IActorContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also