mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 20:42:49 +03:00
29 lines
792 B
Python
29 lines
792 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
|
||
|
import threading
|
||
|
|
||
|
from base.task.task_job import TaskJob
|
||
|
|
||
|
|
||
|
class TaskInQueue(threading.Thread):
|
||
|
"""docstring for TaskInQueue"""
|
||
|
|
||
|
def __init__(self, in_queue):
|
||
|
super(TaskInQueue, self).__init__()
|
||
|
self.in_queue = in_queue
|
||
|
|
||
|
def run(self):
|
||
|
# Add task to db. Adding task to db important because task can be lost when processing.
|
||
|
# Call plugin manager and process message inside task job
|
||
|
try:
|
||
|
task = self.in_queue.get()
|
||
|
print(task)
|
||
|
# Can be validate task before processing
|
||
|
job = TaskJob(task)
|
||
|
job.start()
|
||
|
|
||
|
except Exception as e:
|
||
|
raise
|