-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathProgram.cs
81 lines (71 loc) · 2.2 KB
/
Program.cs
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
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Streaming.WebSocket.Samples
{
/// <summary>
/// Sample runner.
/// </summary>
class Program
{
private static Action _closeConnectionAction;
static void Main(string[] args)
{
Console.WriteLine("Press ESC to disconnect.");
Task taskKeys = new Task(ListenForEscape);
CancellationTokenSource cts = new CancellationTokenSource();
Task taskRunSample = new Task(async () => { await RunSample(cts); });
taskKeys.Start();
try
{
taskRunSample.Start();
}
catch (TaskCanceledException)
{
taskRunSample.Dispose();
}
Task.WaitAll(taskKeys);
cts.Cancel();
taskRunSample.Wait(cts.Token);
Console.WriteLine("Press ESC to close window.");
Console.ReadKey();
}
/// <summary>
/// Run the sample and set up a callback to handle Web Socket close on ESC.
/// </summary>
/// <param name="cts"></param>
private static async Task RunSample(CancellationTokenSource cts)
{
WebSocketSample sample = new WebSocketSample();
async void CloseConnectionCallback() => await sample.StopWebSocket();
_closeConnectionAction = CloseConnectionCallback;
try
{
await sample.RunSample(cts);
}
finally
{
sample.Dispose();
cts.Cancel();
}
Console.WriteLine("Stopped sample.");
}
#region Input handling
/// <summary>
/// Listen for keyboard input from user.
/// </summary>
private static void ListenForEscape()
{
while (!Console.KeyAvailable)
{
ConsoleKeyInfo key = Console.ReadKey(true);
if (key.Key == ConsoleKey.Escape)
{
_closeConnectionAction?.Invoke();
break;
}
}
}
#endregion
}
}