forked from temporalio/samples-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
85 lines (74 loc) · 2.63 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
82
83
84
85
using Microsoft.Extensions.Logging;
using Temporalio.Client;
using Temporalio.Worker;
using TemporalioSamples.WorkerSpecificTaskQueues;
// Create a client to localhost on default namespace
var client = await TemporalClient.ConnectAsync(new("localhost:7233")
{
LoggerFactory = LoggerFactory.Create(builder =>
builder.
AddSimpleConsole(options => options.TimestampFormat = "[HH:mm:ss] ").
SetMinimumLevel(LogLevel.Information)),
});
async Task RunWorkerAsync()
{
// Cancellation token cancelled on ctrl+c
using var tokenSource = new CancellationTokenSource();
Console.CancelKeyPress += (_, eventArgs) =>
{
tokenSource.Cancel();
eventArgs.Cancel = true;
};
var uniqueWorkerTaskQueue = Guid.NewGuid().ToString();
var normalActivities = new NormalActivities(uniqueWorkerTaskQueue);
// Run worker until cancelled
Console.WriteLine("Running worker");
using var normalWorker = new TemporalWorker(
client,
new TemporalWorkerOptions(taskQueue: "worker-specific-task-queues-sample")
.AddActivity(normalActivities.GetUniqueTaskQueue)
.AddWorkflow<FileProcessingWorkflow>());
using var uniqueTaskQueueWorker = new TemporalWorker(
client,
new TemporalWorkerOptions(taskQueue: uniqueWorkerTaskQueue)
.AddActivity(WorkerSpecificActivities.DownloadFileToWorkerFileSystemAsync)
.AddActivity(WorkerSpecificActivities.CleanupFileFromWorkerFileSystemAsync)
.AddActivity(WorkerSpecificActivities.WorkOnFileInWorkerFileSystemAsync));
var tasks = new List<Task> { normalWorker.ExecuteAsync(tokenSource.Token), uniqueTaskQueueWorker.ExecuteAsync(tokenSource.Token) };
var task = await Task.WhenAny(tasks);
if (task.Exception is not null)
{
try
{
await tokenSource.CancelAsync();
await Task.WhenAll(tasks);
}
catch (Exception ex)
{
Console.WriteLine($"Unhandled ex {ex}");
throw;
}
}
else
{
Console.WriteLine("Worker cancelled");
}
}
async Task ExecuteWorkflowAsync()
{
Console.WriteLine("Executing workflow");
await client.ExecuteWorkflowAsync(
(FileProcessingWorkflow wf) => wf.RunAsync(5),
new(id: "file-processing-0", taskQueue: "worker-specific-task-queues-sample"));
}
switch (args.ElementAtOrDefault(0))
{
case "worker":
await RunWorkerAsync();
break;
case "workflow":
await ExecuteWorkflowAsync();
break;
default:
throw new ArgumentException("Must pass 'worker' or 'workflow' as the single argument");
}