teotestbluetooth / TestTeoBluetooth / TestTeoBluetooth.Android / Utils / TaskExtensions.cs @ 4ca686e8
Historique | Voir | Annoter | Télécharger (739 octets)
1 |
using Android.App; |
---|---|
2 |
using Android.Content; |
3 |
using Android.OS; |
4 |
using Android.Runtime; |
5 |
using Android.Views; |
6 |
using Android.Widget; |
7 |
using System; |
8 |
using System.Collections.Generic; |
9 |
using System.Linq; |
10 |
using System.Text; |
11 |
using System.Threading; |
12 |
using System.Threading.Tasks; |
13 |
|
14 |
namespace TeoTestBluetooth.Droid.Utils |
15 |
{ |
16 |
public static class TaskExtensions |
17 |
{ |
18 |
public static Task WithCancellation(this Task task, CancellationToken token) |
19 |
{ |
20 |
return task.ContinueWith(t => t.GetAwaiter().GetResult(), token); |
21 |
} |
22 |
|
23 |
public static Task<T> WithCancellation<T>(this Task<T> task, CancellationToken token) |
24 |
{ |
25 |
return task.ContinueWith(t => t.GetAwaiter().GetResult(), token); |
26 |
} |
27 |
} |
28 |
} |