Files
cpl/src/cpl_reactive_extensions/abc/operator.py
2023-04-15 20:06:43 +02:00

13 lines
247 B
Python

from abc import ABC
from typing import Any
from cpl_reactive_extensions.subscriber import Subscriber
class Operator(ABC):
def __init__(self):
ABC.__init__(self)
def call(self, subscriber: Subscriber, source: Any):
pass