Refactoring

This commit is contained in:
Michael Schimmel
2025-06-02 12:27:52 +02:00
parent 86e2729a52
commit 762e7f83e2
8 changed files with 294 additions and 182 deletions
+19
View File
@@ -0,0 +1,19 @@
unit Myc.TaskManager;
interface
uses
System.SysUtils,
Myc.Signals;
type
IMycTaskManager = interface
function CreateTask( const Gate: IMycState; const Proc: TProc ): TMycSubscription;
end;
var
TaskManager: IMycTaskManager;
implementation
end.