We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6f1feaa + f7ffbd1 commit 3b3965fCopy full SHA for 3b3965f
1 file changed
libraries/MTConnect.NET-SHDR/Adapters/ShdrAdapter.cs
@@ -288,6 +288,8 @@ public void Start()
288
{
289
_stop = new CancellationTokenSource();
290
291
+ _adapter.Start();
292
+
293
// Start Agent Connection Listener
294
_connectionListener.Start(_stop.Token);
295
@@ -302,6 +304,7 @@ public void Stop()
302
304
303
305
if (_stop != null) _stop.Cancel();
306
_connectionListener.Stop();
307
+ _adapter.Stop();
308
309
// Call Overridable Method
310
OnStop();
0 commit comments