Click or drag to resize

OnDemandLocalFileSystem.StartFetchDataAction Method

Starts the action prepared by this class for fetching data. This can be used to vary how the action is started (new thread, thread pool, etc.)

Namespace:  callback.ShellBoost.Core.Synchronization
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
protected virtual void StartFetchDataAction(
	Func<CancellationToken, Task> action,
	CancellationTokenSource source
)

Parameters

action
Type: System.Func<CancellationToken, Task>
The action.
source
Type: System.Threading.CancellationTokenSource
The source.
Exceptions
ExceptionCondition
ArgumentNullExceptionaction or source is null.
See Also