Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MqTask.cs
1
using
System;
2
3
namespace
TAG.Simulator.MQ.Tasks
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
}
TAG.Simulator.MQ.Tasks
Definition:
ConnectionTask.cs:5
ComSim
TAG.Simulator.MQ
Tasks
MqTask.cs
Generated by
1.9.5