Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MqTask.cs
1using System;
2
4{
8 internal abstract class MqTask : IDisposable
9 {
10 private readonly MqClient client;
11
15 public MqTask(MqClient Client)
16 {
17 this.client = Client;
18 }
19
23 public MqClient Client => this.client;
24
28 public virtual void Dispose()
29 {
30 }
31
36 public abstract bool DoWork();
37 }
38}