[WIP] operator implement

This commit is contained in:
2023-04-16 03:06:55 +02:00
parent 79a6c1db8f
commit 82f23f237c
9 changed files with 172 additions and 14 deletions

View File

@@ -1,12 +1,8 @@
from abc import ABC
from typing import Any
from cpl_reactive_extensions.subscriber import Subscriber
class Operator(ABC):
def __init__(self):
ABC.__init__(self)
class Operator:
def call(self, subscriber: Subscriber, source: Any):
pass