Esempio n. 1
0
 def __init__(self):
     StoppableAsyncTask.__init__(self, self._thread_func)
     self.work_event = threading.Event()
     self.logs_to_compress = []
Esempio n. 2
0
 def stop(self):
     StoppableAsyncTask.stop(self)
     self.work_event.set()
Esempio n. 3
0
 def __init__(self):
     StoppableAsyncTask.__init__(self, self._thread_func)
     self.work_event = threading.Event()
     self.logs_to_compress = []
Esempio n. 4
0
 def stop(self):
     StoppableAsyncTask.stop(self)
     self.work_event.set()
Esempio n. 5
0
 def __init__(self, s3_comm):
     StoppableAsyncTask.__init__(self, self._thread_func)
     self.s3_comm = s3_comm
     self.work_event = threading.Event()
     self.logs_to_send = []
Esempio n. 6
0
 def __init__(self, s3_comm):
     StoppableAsyncTask.__init__(self, self._thread_func)
     self.s3_comm = s3_comm
     self.work_event = threading.Event()
     self.logs_to_send = []