(IJobClient jobClient, IJob activatedJob)
| 67 | |
| 68 | |
| 69 | private static void JobHandler(IJobClient jobClient, IJob activatedJob) |
| 70 | { |
| 71 | var variables = JsonConvert.DeserializeObject<Dictionary<string, string>>(activatedJob.Variables); |
| 72 | |
| 73 | Log.LogInformation($"Sending email with message content: {variables[VariablesKey]}"); |
| 74 | |
| 75 | jobClient.NewCompleteJobCommand(activatedJob).Send(); |
| 76 | } |
| 77 | |
| 78 | private static IZeebeClient CreateZeebeClient() |
| 79 | { |
nothing calls this directly
no outgoing calls
no test coverage detected