This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.

26 lines
835 B
Python
Raw Normal View History

from threading import Thread
import state
import queues
from semaphores import kivyuisignaler
from helper_sql import SqlBulkExecute, sqlExecute, sqlQuery, sqlStoredProcedure
2019-05-31 19:47:03 +05:30
class UIkivySignaler(Thread):
def run(self):
kivyuisignaler.acquire()
while state.shutdown == 0:
try:
command, data = queues.UISignalQueue.get()
if command == 'writeNewAddressToTable':
label, address, streamNumber = data
state.kivyapp.variable_1.append(address)
elif command == 'rerenderAddressBook':
state.kivyapp.obj_1.refreshs()
2019-06-06 19:18:20 +05:30
elif command == 'updateSentItemStatusByAckdata':
state.kivyapp.status_dispatching(data)
except Exception as e:
2019-05-31 19:47:03 +05:30
print(e)