[WIP] Added scheduler

This commit is contained in:
2023-04-16 21:46:17 +02:00
parent 39ca803d36
commit aabbfeaa92
51 changed files with 572 additions and 71 deletions

View File

@@ -0,0 +1,10 @@
from abc import ABC, abstractmethod
from cpl_core.type import T, Number
from cpl_reactive_extensions.internal.subscription import Subscription
class SchedulerAction(ABC):
@abstractmethod
def schedule(self, state: T = None, delay: Number = None) -> Subscription:
pass