forked from temporalio/samples-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyWorkflow.workflow.cs
33 lines (29 loc) · 1.02 KB
/
MyWorkflow.workflow.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
namespace TemporalioSamples.ActivitySimple;
using Microsoft.Extensions.Logging;
using Temporalio.Workflows;
[Workflow]
public class MyWorkflow
{
[WorkflowRun]
public async Task<string> RunAsync()
{
// Run an async instance method activity.
var result1 = await Workflow.ExecuteActivityAsync(
(MyActivities act) => act.SelectFromDatabaseAsync("some-db-table"),
new()
{
StartToCloseTimeout = TimeSpan.FromMinutes(5),
});
Workflow.Logger.LogInformation("Activity instance method result: {Result}", result1);
// Run a sync static method activity.
var result2 = await Workflow.ExecuteActivityAsync(
() => MyActivities.DoStaticThing(),
new()
{
StartToCloseTimeout = TimeSpan.FromMinutes(5),
});
Workflow.Logger.LogInformation("Activity static method result: {Result}", result2);
// We'll go ahead and return this result
return result2;
}
}