Monorepo/Modules.Jobs/JobInterface.vb
2019-10-08 16:05:03 +02:00

10 lines
200 B
VB.net

Public Interface IJob
Sub Start(Arguments As Object)
End Interface
Public Interface IJob(Of T)
Sub Start(Arguments As T)
Function ShouldStart(Arguments As T) As Boolean
End Interface