Files
ray-project--ray/python/ray/serve/_private/task_consumer.py
T
2026-07-13 13:17:40 +08:00

13 lines
221 B
Python

from abc import ABC
class TaskConsumerWrapper(ABC):
def __init__(self, *args, **kwargs):
pass
def initialize_callable(self, consumer_concurrency: int):
pass
def __del__(self):
pass