ClientSuite: Add WorkerManager

This commit is contained in:
Jonathan Jenne
2019-06-03 14:18:43 +02:00
parent 269e64be50
commit 2b05e72c9e
11 changed files with 198 additions and 99 deletions

View File

@@ -0,0 +1,12 @@
Imports System.Timers
Namespace Workers
Public Interface IWorker
ReadOnly Property Interval As Integer
Sub Setup()
Sub Teardown()
Sub Callback(manager As WorkerManager, e As ElapsedEventArgs)
End Interface
End Namespace