Click or drag to resize
Akka.NETDispatcherExtensionsScheduleAsyncT Method
Schedules the specified run and returns a continuation task.

Namespace: Akka.Dispatch
Assembly: Akka (in Akka.dll) Version: 1.0.8.21 (1.0.8.21)
Syntax
public static Task<T> ScheduleAsync<T>(
	this MessageDispatcher dispatcher,
	Func<T> fn
)

Parameters

dispatcher
Type: Akka.DispatchMessageDispatcher

[Missing <param name="dispatcher"/> documentation for "M:Akka.Dispatch.DispatcherExtensions.ScheduleAsync``1(Akka.Dispatch.MessageDispatcher,System.Func{``0})"]

fn
Type: SystemFuncT

[Missing <param name="fn"/> documentation for "M:Akka.Dispatch.DispatcherExtensions.ScheduleAsync``1(Akka.Dispatch.MessageDispatcher,System.Func{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Akka.Dispatch.DispatcherExtensions.ScheduleAsync``1(Akka.Dispatch.MessageDispatcher,System.Func{``0})"]

Return Value

Type: TaskT

[Missing <returns> documentation for "M:Akka.Dispatch.DispatcherExtensions.ScheduleAsync``1(Akka.Dispatch.MessageDispatcher,System.Func{``0})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type MessageDispatcher. 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