asyncio-taskpool/src/asyncio_taskpool/constants.py

9 lines
172 B
Python
Raw Normal View History

2022-02-04 16:25:09 +01:00
PACKAGE_NAME = 'asyncio_taskpool'
MSG_BYTES = 1024
CMD_START = 'start'
CMD_STOP = 'stop'
CMD_STOP_ALL = 'stop_all'
CMD_SIZE = 'size'
2022-02-04 18:00:23 +01:00
CMD_FUNC = 'func'
2022-02-04 16:25:09 +01:00
CLIENT_EXIT = 'exit'