base.py 229 B

123456789101112
  1. class TaskConst:
  2. INIT_STATUS = 0
  3. PROCESSING_STATUS = 1
  4. FINISHED_STATUS = 2
  5. FAILED_STATUS = 3
  6. CHUNK_USEFUL_STATUS = 1
  7. class BaseMySQLClient(TaskConst):
  8. def __init__(self, pool):
  9. self.pool = pool