GracefulStopSupportGracefulStop Method (ActorRef, TimeSpan) |
[Missing <summary> documentation for "M:Akka.Actor.GracefulStopSupport.GracefulStop(Akka.Actor.ActorRef,System.TimeSpan)"]
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static Task<bool> GracefulStop(
this ActorRef target,
TimeSpan timeout
)
<ExtensionAttribute>
Public Shared Function GracefulStop (
target As ActorRef,
timeout As TimeSpan
) As Task(Of Boolean)
public:
[ExtensionAttribute]
static Task<bool>^ GracefulStop(
ActorRef^ target,
TimeSpan timeout
)
[<ExtensionAttribute>]
static member GracefulStop :
target : ActorRef *
timeout : TimeSpan -> Task<bool>
Parameters
- target
- Type: Akka.ActorActorRef
[Missing <param name="target"/> documentation for "M:Akka.Actor.GracefulStopSupport.GracefulStop(Akka.Actor.ActorRef,System.TimeSpan)"]
- timeout
- Type: SystemTimeSpan
[Missing <param name="timeout"/> documentation for "M:Akka.Actor.GracefulStopSupport.GracefulStop(Akka.Actor.ActorRef,System.TimeSpan)"]
Return Value
Type:
TaskBoolean[Missing <returns> documentation for "M:Akka.Actor.GracefulStopSupport.GracefulStop(Akka.Actor.ActorRef,System.TimeSpan)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ActorRef. 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