-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathFuture.cs
More file actions
1445 lines (1317 loc) · 76.1 KB
/
Future.cs
File metadata and controls
1445 lines (1317 loc) · 76.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
//
//
//
// A task that produces a value.
//
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
namespace System.Threading.Tasks
{
/// <summary>
/// Represents an asynchronous operation that produces a result at some time in the future.
/// </summary>
/// <typeparam name="TResult">
/// The type of the result produced by this <see cref="Task{TResult}"/>.
/// </typeparam>
/// <remarks>
/// <para>
/// <see cref="Task{TResult}"/> instances may be created in a variety of ways. The most common approach is by
/// using the task's <see cref="Factory"/> property to retrieve a <see
/// cref="TaskFactory{TResult}"/> instance that can be used to create tasks for several
/// purposes. For example, to create a <see cref="Task{TResult}"/> that runs a function, the factory's StartNew
/// method may be used:
/// <code>
/// // C#
/// var t = Task<int>.Factory.StartNew(() => GenerateResult());
/// - or -
/// var t = Task.Factory.StartNew(() => GenerateResult());
///
/// ' Visual Basic
/// Dim t = Task<int>.Factory.StartNew(Function() GenerateResult())
/// - or -
/// Dim t = Task.Factory.StartNew(Function() GenerateResult())
/// </code>
/// </para>
/// <para>
/// The <see cref="Task{TResult}"/> class also provides constructors that initialize the task but that do not
/// schedule it for execution. For performance reasons, the StartNew method should be the
/// preferred mechanism for creating and scheduling computational tasks, but for scenarios where creation
/// and scheduling must be separated, the constructors may be used, and the task's
/// <see cref="Task.Start()">Start</see>
/// method may then be used to schedule the task for execution at a later time.
/// </para>
/// <para>
/// All members of <see cref="Task{TResult}"/>, except for
/// <see cref="Task.Dispose()">Dispose</see>, are thread-safe
/// and may be used from multiple threads concurrently.
/// </para>
/// </remarks>
[DebuggerTypeProxy(typeof(SystemThreadingTasks_FutureDebugView<>))]
[DebuggerDisplay("Id = {Id}, Status = {Status}, Method = {DebuggerDisplayMethodDescription}, Result = {DebuggerDisplayResultDescription}")]
public class Task<TResult> : Task
{
/// <summary>A cached task for default(TResult).</summary>
internal static readonly Task<TResult> s_defaultResultTask = TaskCache.CreateCacheableTask<TResult>(default);
private static TaskFactory<TResult>? s_Factory;
// The value itself, if set.
internal TResult? m_result;
// Extract rarely used helper for a static method in a separate type so that the Func<Task<Task>, Task<TResult>>
// generic instantiations don't contribute to all Task instantiations, but only those where WhenAny is used.
internal static class TaskWhenAnyCast
{
// Delegate used by:
// public static Task<Task<TResult>> WhenAny<TResult>(IEnumerable<Task<TResult>> tasks);
// public static Task<Task<TResult>> WhenAny<TResult>(params Task<TResult>[] tasks);
// Used to "cast" from Task<Task> to Task<Task<TResult>>.
internal static readonly Func<Task<Task>, Task<TResult>> Value = completed => (Task<TResult>)completed.Result;
}
// Construct a promise-style task without any options.
internal Task()
{
}
// Construct a promise-style task with state and options.
internal Task(object? state, TaskCreationOptions options) :
base(state, options, promiseStyle: true)
{
}
// Construct a pre-completed Task<TResult>
internal Task(TResult result) :
base(false, TaskCreationOptions.None, default)
{
m_result = result;
}
internal Task(bool canceled, TResult? result, TaskCreationOptions creationOptions, CancellationToken ct)
: base(canceled, creationOptions, ct)
{
if (!canceled)
{
m_result = result;
}
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified function.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
public Task(Func<TResult> function)
: this(function, null, default,
TaskCreationOptions.None, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified function.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to be assigned to this task.</param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
/// <exception cref="ObjectDisposedException">The provided <see cref="CancellationToken">CancellationToken</see>
/// has already been disposed.
/// </exception>
public Task(Func<TResult> function, CancellationToken cancellationToken)
: this(function, null, cancellationToken,
TaskCreationOptions.None, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified function and creation options.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="creationOptions">
/// The <see cref="TaskCreationOptions">TaskCreationOptions</see> used to
/// customize the task's behavior.
/// </param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="creationOptions"/> argument specifies an invalid value for <see
/// cref="TaskCreationOptions"/>.
/// </exception>
public Task(Func<TResult> function, TaskCreationOptions creationOptions)
: this(function, InternalCurrentIfAttached(creationOptions), default, creationOptions, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified function and creation options.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new task.</param>
/// <param name="creationOptions">
/// The <see cref="TaskCreationOptions">TaskCreationOptions</see> used to
/// customize the task's behavior.
/// </param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="creationOptions"/> argument specifies an invalid value for <see
/// cref="TaskCreationOptions"/>.
/// </exception>
/// <exception cref="ObjectDisposedException">The provided <see cref="CancellationToken">CancellationToken</see>
/// has already been disposed.
/// </exception>
public Task(Func<TResult> function, CancellationToken cancellationToken, TaskCreationOptions creationOptions)
: this(function, InternalCurrentIfAttached(creationOptions), cancellationToken, creationOptions, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified function and state.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="state">An object representing data to be used by the action.</param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
public Task(Func<object?, TResult> function, object? state)
: this(function, state, null, default,
TaskCreationOptions.None, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified action, state, and options.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="state">An object representing data to be used by the function.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to be assigned to the new task.</param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
/// <exception cref="ObjectDisposedException">The provided <see cref="CancellationToken">CancellationToken</see>
/// has already been disposed.
/// </exception>
public Task(Func<object?, TResult> function, object? state, CancellationToken cancellationToken)
: this(function, state, null, cancellationToken,
TaskCreationOptions.None, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified action, state, and options.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="state">An object representing data to be used by the function.</param>
/// <param name="creationOptions">
/// The <see cref="TaskCreationOptions">TaskCreationOptions</see> used to
/// customize the task's behavior.
/// </param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="creationOptions"/> argument specifies an invalid value for <see
/// cref="TaskCreationOptions"/>.
/// </exception>
public Task(Func<object?, TResult> function, object? state, TaskCreationOptions creationOptions)
: this(function, state, InternalCurrentIfAttached(creationOptions), default,
creationOptions, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Initializes a new <see cref="Task{TResult}"/> with the specified action, state, and options.
/// </summary>
/// <param name="function">
/// The delegate that represents the code to execute in the task. When the function has completed,
/// the task's <see cref="Result"/> property will be set to return the result value of the function.
/// </param>
/// <param name="state">An object representing data to be used by the function.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to be assigned to the new task.</param>
/// <param name="creationOptions">
/// The <see cref="TaskCreationOptions">TaskCreationOptions</see> used to
/// customize the task's behavior.
/// </param>
/// <exception cref="ArgumentException">
/// The <paramref name="function"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="creationOptions"/> argument specifies an invalid value for <see
/// cref="TaskCreationOptions"/>.
/// </exception>
/// <exception cref="ObjectDisposedException">The provided <see cref="CancellationToken">CancellationToken</see>
/// has already been disposed.
/// </exception>
public Task(Func<object?, TResult> function, object? state, CancellationToken cancellationToken, TaskCreationOptions creationOptions)
: this(function, state, InternalCurrentIfAttached(creationOptions), cancellationToken,
creationOptions, InternalTaskOptions.None, null)
{
}
/// <summary>
/// Creates a new future object.
/// </summary>
/// <param name="parent">The parent task for this future.</param>
/// <param name="valueSelector">A function that yields the future value.</param>
/// <param name="scheduler">The task scheduler which will be used to execute the future.</param>
/// <param name="cancellationToken">The CancellationToken for the task.</param>
/// <param name="creationOptions">Options to control the future's behavior.</param>
/// <param name="internalOptions">Internal options to control the future's behavior.</param>
internal Task(Func<TResult> valueSelector, Task? parent, CancellationToken cancellationToken,
TaskCreationOptions creationOptions, InternalTaskOptions internalOptions, TaskScheduler? scheduler) :
base(valueSelector, null, parent, cancellationToken, creationOptions, internalOptions, scheduler)
{
}
/// <summary>
/// Creates a new future object.
/// </summary>
/// <param name="parent">The parent task for this future.</param>
/// <param name="state">An object containing data to be used by the action; may be null.</param>
/// <param name="valueSelector">A function that yields the future value.</param>
/// <param name="cancellationToken">The CancellationToken for the task.</param>
/// <param name="scheduler">The task scheduler which will be used to execute the future.</param>
/// <param name="creationOptions">Options to control the future's behavior.</param>
/// <param name="internalOptions">Internal options to control the future's behavior.</param>
internal Task(Delegate valueSelector, object? state, Task? parent, CancellationToken cancellationToken,
TaskCreationOptions creationOptions, InternalTaskOptions internalOptions, TaskScheduler? scheduler) :
base(valueSelector, state, parent, cancellationToken, creationOptions, internalOptions, scheduler)
{
}
// Internal method used by TaskFactory<TResult>.StartNew() methods
internal static Task<TResult> StartNew(Task? parent, Func<TResult> function, CancellationToken cancellationToken,
TaskCreationOptions creationOptions, InternalTaskOptions internalOptions, TaskScheduler scheduler)
{
if (function == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.function);
}
if (scheduler == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.scheduler);
}
// Create and schedule the future.
Task<TResult> f = new Task<TResult>(function, parent, cancellationToken, creationOptions, internalOptions | InternalTaskOptions.QueuedByRuntime, scheduler);
f.ScheduleAndStart(false);
return f;
}
// Internal method used by TaskFactory<TResult>.StartNew() methods
internal static Task<TResult> StartNew(Task? parent, Func<object?, TResult> function, object? state, CancellationToken cancellationToken,
TaskCreationOptions creationOptions, InternalTaskOptions internalOptions, TaskScheduler scheduler)
{
if (function == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.function);
}
if (scheduler == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.scheduler);
}
// Create and schedule the future.
Task<TResult> f = new Task<TResult>(function, state, parent, cancellationToken, creationOptions, internalOptions | InternalTaskOptions.QueuedByRuntime, scheduler);
f.ScheduleAndStart(false);
return f;
}
// Debugger support
private string DebuggerDisplayResultDescription =>
IsCompletedSuccessfully ? "" + m_result : SR.TaskT_DebuggerNoResult;
// Debugger support
private string DebuggerDisplayMethodDescription =>
m_action?.Method.ToString() ?? "{null}";
// internal helper function breaks out logic used by TaskCompletionSource
internal bool TrySetResult(TResult? result)
{
bool returnValue = false;
// "Reserve" the completion for this task, while making sure that: (1) No prior reservation
// has been made, (2) The result has not already been set, (3) An exception has not previously
// been recorded, and (4) Cancellation has not been requested.
//
// If the reservation is successful, then set the result and finish completion processing.
if (AtomicStateUpdate((int)TaskStateFlags.CompletionReserved,
(int)TaskStateFlags.CompletionReserved | (int)TaskStateFlags.RanToCompletion | (int)TaskStateFlags.Faulted | (int)TaskStateFlags.Canceled))
{
m_result = result;
// Signal completion, for waiting tasks
// This logic used to be:
// Finish(false);
// However, that goes through a windy code path, involves many non-inlineable functions
// and which can be summarized more concisely with the following snippet from
// FinishStageTwo, omitting everything that doesn't pertain to TrySetResult.
Interlocked.Exchange(ref m_stateFlags, m_stateFlags | (int)TaskStateFlags.RanToCompletion);
ContingentProperties? props = m_contingentProperties;
if (props != null)
{
NotifyParentIfPotentiallyAttachedTask();
props.SetCompleted();
}
FinishContinuations();
returnValue = true;
}
return returnValue;
}
// Transitions the promise task into a successfully completed state with the specified result.
// This is dangerous, as no synchronization is used, and thus must only be used
// before this task is handed out to any consumers, before any continuations are hooked up,
// before its wait handle is accessed, etc. It's use is limited to places like in FromAsync
// where the operation completes synchronously, and thus we know we can forcefully complete
// the task, avoiding expensive completion paths, before the task is actually given to anyone.
internal void DangerousSetResult(TResult result)
{
Debug.Assert(!IsCompleted, "The promise must not yet be completed.");
// If we have a parent, we need to notify it of the completion. Take the slow path to handle that.
if (m_contingentProperties?.m_parent != null)
{
bool success = TrySetResult(result);
// Nobody else has had a chance to complete this Task yet, so we should succeed.
Debug.Assert(success);
}
else
{
m_result = result;
m_stateFlags |= (int)TaskStateFlags.RanToCompletion;
}
}
/// <summary>
/// Gets the result value of this <see cref="Task{TResult}"/>.
/// </summary>
/// <remarks>
/// The get accessor for this property ensures that the asynchronous operation is complete before
/// returning. Once the result of the computation is available, it is stored and will be returned
/// immediately on later calls to <see cref="Result"/>.
/// </remarks>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
public TResult Result =>
IsWaitNotificationEnabledOrNotRanToCompletion ?
GetResultCore(waitCompletionNotification: true) :
m_result!;
/// <summary>
/// Gets the result value of this <see cref="Task{TResult}"/> once the task has completed successfully.
/// </summary>
/// <remarks>
/// This version of Result should only be used if the task completed successfully and if there's
/// no debugger wait notification enabled for this task.
/// </remarks>
internal TResult ResultOnSuccess
{
get
{
Debug.Assert(!IsWaitNotificationEnabledOrNotRanToCompletion,
"Should only be used when the task completed successfully and there's no wait notification enabled");
return m_result!;
}
}
// Implements Result. Result delegates to this method if the result isn't already available.
internal TResult GetResultCore(bool waitCompletionNotification)
{
// If the result has not been calculated yet, wait for it.
if (!IsCompleted) InternalWait(Timeout.Infinite, default); // won't throw if task faulted or canceled; that's handled below
// Notify the debugger of the wait completion if it's requested such a notification
if (waitCompletionNotification) NotifyDebuggerOfWaitCompletionIfNecessary();
// Throw an exception if appropriate.
if (!IsCompletedSuccessfully) ThrowIfExceptional(includeTaskCanceledExceptions: true);
// We shouldn't be here if the result has not been set.
Debug.Assert(IsCompletedSuccessfully, "Task<T>.Result getter: Expected result to have been set.");
return m_result!;
}
/// <summary>
/// Provides access to factory methods for creating <see cref="Task{TResult}"/> instances.
/// </summary>
/// <remarks>
/// The factory returned from <see cref="Factory"/> is a default instance
/// of <see cref="TaskFactory{TResult}"/>, as would result from using
/// the default constructor on the factory type.
/// </remarks>
public static new TaskFactory<TResult> Factory =>
Volatile.Read(ref s_Factory) ??
Interlocked.CompareExchange(ref s_Factory, new TaskFactory<TResult>(), null) ??
s_Factory;
/// <summary>
/// Evaluates the value selector of the Task which is passed in as an object and stores the result.
/// </summary>
internal override void InnerInvoke()
{
// Invoke the delegate
Debug.Assert(m_action != null);
if (m_action is Func<TResult> func)
{
m_result = func();
return;
}
if (m_action is Func<object?, TResult> funcWithState)
{
m_result = funcWithState(m_stateObject);
return;
}
Debug.Fail("Invalid m_action in Task<TResult>");
}
#region Await Support
/// <summary>Gets an awaiter used to await this <see cref="Task{TResult}"/>.</summary>
/// <returns>An awaiter instance.</returns>
public new TaskAwaiter<TResult> GetAwaiter()
{
return new TaskAwaiter<TResult>(this);
}
/// <summary>Configures an awaiter used to await this <see cref="Task{TResult}"/>.</summary>
/// <param name="continueOnCapturedContext">
/// true to attempt to marshal the continuation back to the original context captured; otherwise, false.
/// </param>
/// <returns>An object used to await this task.</returns>
public new ConfiguredTaskAwaitable<TResult> ConfigureAwait(bool continueOnCapturedContext)
{
return new ConfiguredTaskAwaitable<TResult>(this, continueOnCapturedContext ? ConfigureAwaitOptions.ContinueOnCapturedContext : ConfigureAwaitOptions.None);
}
/// <summary>Configures an awaiter used to await this <see cref="Task"/>.</summary>
/// <param name="options">Options used to configure how awaits on this task are performed.</param>
/// <returns>An object used to await this task.</returns>
/// <exception cref="ArgumentOutOfRangeException">The <paramref name="options"/> argument specifies an invalid value.</exception>
public new ConfiguredTaskAwaitable<TResult> ConfigureAwait(ConfigureAwaitOptions options)
{
if ((options & ~(ConfigureAwaitOptions.ContinueOnCapturedContext |
ConfigureAwaitOptions.ForceYielding)) != 0)
{
ThrowForInvalidOptions(options);
}
return new ConfiguredTaskAwaitable<TResult>(this, options);
static void ThrowForInvalidOptions(ConfigureAwaitOptions options) =>
throw ((options & ConfigureAwaitOptions.SuppressThrowing) == 0 ?
new ArgumentOutOfRangeException(nameof(options)) :
new ArgumentOutOfRangeException(nameof(options), SR.TaskT_ConfigureAwait_InvalidOptions));
}
#endregion
#region WaitAsync methods
/// <summary>Gets a <see cref="Task{TResult}"/> that will complete when this <see cref="Task{TResult}"/> completes or when the specified <see cref="CancellationToken"/> has cancellation requested.</summary>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param>
/// <returns>The <see cref="Task{TResult}"/> representing the asynchronous wait. It may or may not be the same instance as the current instance.</returns>
public new Task<TResult> WaitAsync(CancellationToken cancellationToken) =>
WaitAsync(Timeout.UnsignedInfinite, TimeProvider.System, cancellationToken);
/// <summary>Gets a <see cref="Task{TResult}"/> that will complete when this <see cref="Task{TResult}"/> completes or when the specified timeout expires.</summary>
/// <param name="timeout">The timeout after which the <see cref="Task"/> should be faulted with a <see cref="TimeoutException"/> if it hasn't otherwise completed.</param>
/// <returns>The <see cref="Task{TResult}"/> representing the asynchronous wait. It may or may not be the same instance as the current instance.</returns>
public new Task<TResult> WaitAsync(TimeSpan timeout) =>
WaitAsync(ValidateTimeout(timeout, ExceptionArgument.timeout), TimeProvider.System, default);
/// <summary>
/// Gets a <see cref="Task{TResult}"/> that will complete when this <see cref="Task{TResult}"/> completes or when the specified timeout expires.
/// </summary>
/// <param name="timeout">The timeout after which the <see cref="Task"/> should be faulted with a <see cref="TimeoutException"/> if it hasn't otherwise completed.</param>
/// <param name="timeProvider">The <see cref="TimeProvider"/> with which to interpret <paramref name="timeout"/>.</param>
/// <returns>The <see cref="Task{TResult}"/> representing the asynchronous wait. It may or may not be the same instance as the current instance.</returns>
public new Task<TResult> WaitAsync(TimeSpan timeout, TimeProvider timeProvider)
{
ArgumentNullException.ThrowIfNull(timeProvider);
return WaitAsync(ValidateTimeout(timeout, ExceptionArgument.timeout), timeProvider, default);
}
/// <summary>Gets a <see cref="Task{TResult}"/> that will complete when this <see cref="Task{TResult}"/> completes, when the specified timeout expires, or when the specified <see cref="CancellationToken"/> has cancellation requested.</summary>
/// <param name="timeout">The timeout after which the <see cref="Task"/> should be faulted with a <see cref="TimeoutException"/> if it hasn't otherwise completed.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param>
/// <returns>The <see cref="Task{TResult}"/> representing the asynchronous wait. It may or may not be the same instance as the current instance.</returns>
public new Task<TResult> WaitAsync(TimeSpan timeout, CancellationToken cancellationToken) =>
WaitAsync(ValidateTimeout(timeout, ExceptionArgument.timeout), TimeProvider.System, cancellationToken);
/// <summary>
/// Gets a <see cref="Task{TResult}"/> that will complete when this <see cref="Task{TResult}"/> completes, when the specified timeout expires, or when the specified <see cref="CancellationToken"/> has cancellation requested.
/// </summary>
/// <param name="timeout">The timeout after which the <see cref="Task"/> should be faulted with a <see cref="TimeoutException"/> if it hasn't otherwise completed.</param>
/// <param name="timeProvider">The <see cref="TimeProvider"/> with which to interpret <paramref name="timeout"/>.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for a cancellation request.</param>
/// <returns>The <see cref="Task{TResult}"/> representing the asynchronous wait. It may or may not be the same instance as the current instance.</returns>
public new Task<TResult> WaitAsync(TimeSpan timeout, TimeProvider timeProvider, CancellationToken cancellationToken)
{
ArgumentNullException.ThrowIfNull(timeProvider);
return WaitAsync(ValidateTimeout(timeout, ExceptionArgument.timeout), timeProvider, cancellationToken);
}
private Task<TResult> WaitAsync(uint millisecondsTimeout, TimeProvider timeProvider, CancellationToken cancellationToken)
{
if (IsCompleted || (!cancellationToken.CanBeCanceled && millisecondsTimeout == Timeout.UnsignedInfinite))
{
return this;
}
if (cancellationToken.IsCancellationRequested)
{
return FromCanceled<TResult>(cancellationToken);
}
if (millisecondsTimeout == 0)
{
return FromException<TResult>(new TimeoutException());
}
return new CancellationPromise<TResult>(this, millisecondsTimeout, timeProvider, cancellationToken);
}
#endregion
#region Continuation methods
#region Action<Task<TResult>> continuations
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task as an argument.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed, whether it completes due to running to completion successfully, faulting due to an
/// unhandled exception, or exiting out early due to being canceled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>> continuationAction)
{
return ContinueWith(continuationAction, TaskScheduler.Current, default, TaskContinuationOptions.None);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task as an argument.
/// </param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed, whether it completes due to running to completion successfully, faulting due to an
/// unhandled exception, or exiting out early due to being canceled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>> continuationAction, CancellationToken cancellationToken)
{
return ContinueWith(continuationAction, TaskScheduler.Current, cancellationToken, TaskContinuationOptions.None);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task as an argument.
/// </param>
/// <param name="scheduler">
/// The <see cref="TaskScheduler"/> to associate with the continuation task and to use for its execution.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed, whether it completes due to running to completion successfully, faulting due to an
/// unhandled exception, or exiting out early due to being canceled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
/// <exception cref="ArgumentNullException">
/// The <paramref name="scheduler"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>> continuationAction, TaskScheduler scheduler)
{
return ContinueWith(continuationAction, scheduler, default, TaskContinuationOptions.None);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task as an argument.
/// </param>
/// <param name="continuationOptions">
/// Options for when the continuation is scheduled and how it behaves. This includes criteria, such
/// as <see
/// cref="TaskContinuationOptions.OnlyOnCanceled">OnlyOnCanceled</see>, as
/// well as execution options, such as <see
/// cref="TaskContinuationOptions.ExecuteSynchronously">ExecuteSynchronously</see>.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed. If the continuation criteria specified through the <paramref
/// name="continuationOptions"/> parameter are not met, the continuation task will be canceled
/// instead of scheduled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="continuationOptions"/> argument specifies an invalid value for <see
/// cref="TaskContinuationOptions">TaskContinuationOptions</see>.
/// </exception>
public Task ContinueWith(Action<Task<TResult>> continuationAction, TaskContinuationOptions continuationOptions)
{
return ContinueWith(continuationAction, TaskScheduler.Current, default, continuationOptions);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task as an argument.
/// </param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param>
/// <param name="continuationOptions">
/// Options for when the continuation is scheduled and how it behaves. This includes criteria, such
/// as <see
/// cref="TaskContinuationOptions.OnlyOnCanceled">OnlyOnCanceled</see>, as
/// well as execution options, such as <see
/// cref="TaskContinuationOptions.ExecuteSynchronously">ExecuteSynchronously</see>.
/// </param>
/// <param name="scheduler">
/// The <see cref="TaskScheduler"/> to associate with the continuation task and to use for its
/// execution.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed. If the criteria specified through the <paramref name="continuationOptions"/> parameter
/// are not met, the continuation task will be canceled instead of scheduled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="continuationOptions"/> argument specifies an invalid value for <see
/// cref="TaskContinuationOptions">TaskContinuationOptions</see>.
/// </exception>
/// <exception cref="ArgumentNullException">
/// The <paramref name="scheduler"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>> continuationAction, CancellationToken cancellationToken,
TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
{
return ContinueWith(continuationAction, scheduler, cancellationToken, continuationOptions);
}
// Same as the above overload, only with a stack mark.
internal Task ContinueWith(Action<Task<TResult>> continuationAction, TaskScheduler scheduler, CancellationToken cancellationToken,
TaskContinuationOptions continuationOptions)
{
if (continuationAction == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.continuationAction);
}
if (scheduler == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.scheduler);
}
CreationOptionsFromContinuationOptions(
continuationOptions,
out TaskCreationOptions creationOptions,
out InternalTaskOptions internalOptions);
Task continuationTask = new ContinuationTaskFromResultTask<TResult>(
this, continuationAction, null,
creationOptions, internalOptions
);
// Register the continuation. If synchronous execution is requested, this may
// actually invoke the continuation before returning.
ContinueWithCore(continuationTask, scheduler, cancellationToken, continuationOptions);
return continuationTask;
}
#endregion
#region Action<Task<TResult>, Object> continuations
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task and the caller-supplied state object as arguments.
/// </param>
/// <param name="state">An object representing data to be used by the continuation action.</param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed, whether it completes due to running to completion successfully, faulting due to an
/// unhandled exception, or exiting out early due to being canceled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state)
{
return ContinueWith(continuationAction, state, TaskScheduler.Current, default, TaskContinuationOptions.None);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task and the caller-supplied state object as arguments.
/// </param>
/// <param name="state">An object representing data to be used by the continuation action.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed, whether it completes due to running to completion successfully, faulting due to an
/// unhandled exception, or exiting out early due to being canceled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, CancellationToken cancellationToken)
{
return ContinueWith(continuationAction, state, TaskScheduler.Current, cancellationToken, TaskContinuationOptions.None);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task and the caller-supplied state object as arguments.
/// </param>
/// <param name="state">An object representing data to be used by the continuation action.</param>
/// <param name="scheduler">
/// The <see cref="TaskScheduler"/> to associate with the continuation task and to use for its execution.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed, whether it completes due to running to completion successfully, faulting due to an
/// unhandled exception, or exiting out early due to being canceled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
/// <exception cref="ArgumentNullException">
/// The <paramref name="scheduler"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, TaskScheduler scheduler)
{
return ContinueWith(continuationAction, state, scheduler, default, TaskContinuationOptions.None);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task and the caller-supplied state object as arguments.
/// </param>
/// <param name="state">An object representing data to be used by the continuation action.</param>
/// <param name="continuationOptions">
/// Options for when the continuation is scheduled and how it behaves. This includes criteria, such
/// as <see
/// cref="TaskContinuationOptions.OnlyOnCanceled">OnlyOnCanceled</see>, as
/// well as execution options, such as <see
/// cref="TaskContinuationOptions.ExecuteSynchronously">ExecuteSynchronously</see>.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed. If the continuation criteria specified through the <paramref
/// name="continuationOptions"/> parameter are not met, the continuation task will be canceled
/// instead of scheduled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="continuationOptions"/> argument specifies an invalid value for <see
/// cref="TaskContinuationOptions">TaskContinuationOptions</see>.
/// </exception>
public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, TaskContinuationOptions continuationOptions)
{
return ContinueWith(continuationAction, state, TaskScheduler.Current, default, continuationOptions);
}
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <param name="continuationAction">
/// An action to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task and the caller-supplied state object as arguments.
/// </param>
/// <param name="state">An object representing data to be used by the continuation action.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that will be assigned to the new continuation task.</param>
/// <param name="continuationOptions">
/// Options for when the continuation is scheduled and how it behaves. This includes criteria, such
/// as <see
/// cref="TaskContinuationOptions.OnlyOnCanceled">OnlyOnCanceled</see>, as
/// well as execution options, such as <see
/// cref="TaskContinuationOptions.ExecuteSynchronously">ExecuteSynchronously</see>.
/// </param>
/// <param name="scheduler">
/// The <see cref="TaskScheduler"/> to associate with the continuation task and to use for its
/// execution.
/// </param>
/// <returns>A new continuation <see cref="Task"/>.</returns>
/// <remarks>
/// The returned <see cref="Task"/> will not be scheduled for execution until the current task has
/// completed. If the criteria specified through the <paramref name="continuationOptions"/> parameter
/// are not met, the continuation task will be canceled instead of scheduled.
/// </remarks>
/// <exception cref="ArgumentNullException">
/// The <paramref name="continuationAction"/> argument is null.
/// </exception>
/// <exception cref="ArgumentOutOfRangeException">
/// The <paramref name="continuationOptions"/> argument specifies an invalid value for <see
/// cref="TaskContinuationOptions">TaskContinuationOptions</see>.
/// </exception>
/// <exception cref="ArgumentNullException">
/// The <paramref name="scheduler"/> argument is null.
/// </exception>
public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, CancellationToken cancellationToken,
TaskContinuationOptions continuationOptions, TaskScheduler scheduler)
{
return ContinueWith(continuationAction, state, scheduler, cancellationToken, continuationOptions);
}
// Same as the above overload, only with a stack mark.
internal Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, TaskScheduler scheduler, CancellationToken cancellationToken,
TaskContinuationOptions continuationOptions)
{
if (continuationAction == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.continuationAction);
}
if (scheduler == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.scheduler);
}
CreationOptionsFromContinuationOptions(
continuationOptions,
out TaskCreationOptions creationOptions,
out InternalTaskOptions internalOptions);
Task continuationTask = new ContinuationTaskFromResultTask<TResult>(
this, continuationAction, state,
creationOptions, internalOptions
);
// Register the continuation. If synchronous execution is requested, this may
// actually invoke the continuation before returning.
ContinueWithCore(continuationTask, scheduler, cancellationToken, continuationOptions);
return continuationTask;
}
#endregion
#region Func<Task<TResult>,TNewResult> continuations
/// <summary>
/// Creates a continuation that executes when the target <see cref="Task{TResult}"/> completes.
/// </summary>
/// <typeparam name="TNewResult">
/// The type of the result produced by the continuation.
/// </typeparam>
/// <param name="continuationFunction">
/// A function to run when the <see cref="Task{TResult}"/> completes. When run, the delegate will be
/// passed the completed task as an argument.
/// </param>
/// <returns>A new continuation <see cref="Task{TNewResult}"/>.</returns>