私は結合することをスレッドセーフなクラスを作りCancellationTokenSource
にTask
、そしてことを保証しCancellationTokenSource
、その関連に配置されますTask
完了します。ロックを使用して、CancellationTokenSource
廃棄中または廃棄後にキャンセルされないようにします。これは、次のドキュメントに準拠するために発生します。
このDispose
メソッドは、CancellationTokenSource
オブジェクトに対する他のすべての操作が完了したときにのみ使用する必要があります。
そしてまた:
このDispose
メソッドは、CancellationTokenSource
を使用できない状態のままにします。
ここにクラスがあります:
public class CancelableExecution
{
private readonly bool _allowConcurrency;
private Operation _activeOperation;
private class Operation : IDisposable
{
private readonly object _locker = new object();
private readonly CancellationTokenSource _cts;
private readonly TaskCompletionSource<bool> _completionSource;
private bool _disposed;
public Task Completion => _completionSource.Task; // Never fails
public Operation(CancellationTokenSource cts)
{
_cts = cts;
_completionSource = new TaskCompletionSource<bool>(
TaskCreationOptions.RunContinuationsAsynchronously);
}
public void Cancel()
{
lock (_locker) if (!_disposed) _cts.Cancel();
}
void IDisposable.Dispose() // Is called only once
{
try
{
lock (_locker) { _cts.Dispose(); _disposed = true; }
}
finally { _completionSource.SetResult(true); }
}
}
public CancelableExecution(bool allowConcurrency)
{
_allowConcurrency = allowConcurrency;
}
public CancelableExecution() : this(false) { }
public bool IsRunning =>
Interlocked.CompareExchange(ref _activeOperation, null, null) != null;
public async Task<TResult> RunAsync<TResult>(
Func<CancellationToken, Task<TResult>> taskFactory,
CancellationToken extraToken = default)
{
var cts = CancellationTokenSource.CreateLinkedTokenSource(extraToken, default);
using (var operation = new Operation(cts))
{
// Set this as the active operation
var oldOperation = Interlocked.Exchange(ref _activeOperation, operation);
try
{
if (oldOperation != null && !_allowConcurrency)
{
oldOperation.Cancel();
await oldOperation.Completion; // Continue on captured context
}
var task = taskFactory(cts.Token); // Run in the initial context
return await task.ConfigureAwait(false);
}
finally
{
// If this is still the active operation, set it back to null
Interlocked.CompareExchange(ref _activeOperation, null, operation);
}
}
}
public Task RunAsync(Func<CancellationToken, Task> taskFactory,
CancellationToken extraToken = default)
{
return RunAsync<object>(async ct =>
{
await taskFactory(ct).ConfigureAwait(false);
return null;
}, extraToken);
}
public Task CancelAsync()
{
var operation = Interlocked.CompareExchange(ref _activeOperation, null, null);
if (operation == null) return Task.CompletedTask;
operation.Cancel();
return operation.Completion;
}
public bool Cancel() => CancelAsync() != Task.CompletedTask;
}
CancelableExecution
クラスの主なメソッドはRunAsync
およびCancel
です。デフォルトでは、同時操作は許可されていません。つまり、RunAsync
、2回目のは、新しい操作を開始する前に、前の操作(まだ実行中の場合)の完了を通知なしにキャンセルして待機します。
このクラスは、あらゆる種類のアプリケーションで使用できます。ただし、主な用途は、UIアプリケーション、非同期操作を開始およびキャンセルするためのボタンを備えたフォーム内、または選択したアイテムが変更されるたびに操作をキャンセルして再開するリストボックスでの使用です。最初のケースの例を次に示します。
private readonly CancelableExecution _cancelableExecution = new CancelableExecution();
private async void btnExecute_Click(object sender, EventArgs e)
{
string result;
try
{
Cursor = Cursors.WaitCursor;
btnExecute.Enabled = false;
btnCancel.Enabled = true;
result = await _cancelableExecution.RunAsync(async ct =>
{
await Task.Delay(3000, ct); // Simulate some cancelable I/O operation
return "Hello!";
});
}
catch (OperationCanceledException)
{
return;
}
finally
{
btnExecute.Enabled = true;
btnCancel.Enabled = false;
Cursor = Cursors.Default;
}
this.Text += result;
}
private void btnCancel_Click(object sender, EventArgs e)
{
_cancelableExecution.Cancel();
}
このRunAsync
メソッドはCancellationToken
、内部で作成されたにリンクされている追加を引数として受け入れますCancellationTokenSource
。このオプションのトークンを指定すると、事前のシナリオで役立つ場合があります。