Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObservableTaskOptions.cs
1using System;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
9
11{
12 public sealed class ObservableTaskOptions
13 {
14 public string Name { get; set; } = "Operation";
15 public bool AutoStart { get; set; } = true;
16 public bool UseTaskRun { get; set; } = false;
17 public IObservableTaskTelemetry? Telemetry { get; set; }
18 public List<IAsyncPolicy> Policies { get; } = new();
19 public IDispatcherAdapter? Dispatcher { get; set; }
20 }
21
22}