mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Per-thread singletons
This commit is contained in:
parent
488fb745b7
commit
1a80fc5a0e
@ -17,6 +17,9 @@ except ImportError:
|
|||||||
from telebot import logger
|
from telebot import logger
|
||||||
|
|
||||||
|
|
||||||
|
thread_local = threading.local()
|
||||||
|
|
||||||
|
|
||||||
class WorkerThread(threading.Thread):
|
class WorkerThread(threading.Thread):
|
||||||
count = 0
|
count = 0
|
||||||
|
|
||||||
@ -242,3 +245,12 @@ def extract_arguments(text):
|
|||||||
regexp = re.compile("\/\w*(@\w*)*\s*([\s\S]*)",re.IGNORECASE)
|
regexp = re.compile("\/\w*(@\w*)*\s*([\s\S]*)",re.IGNORECASE)
|
||||||
result = regexp.match(text)
|
result = regexp.match(text)
|
||||||
return result.group(2) if is_command(text) else None
|
return result.group(2) if is_command(text) else None
|
||||||
|
|
||||||
|
|
||||||
|
def per_thread(key, construct_value):
|
||||||
|
try:
|
||||||
|
return getattr(thread_local, key)
|
||||||
|
except AttributeError:
|
||||||
|
value = construct_value()
|
||||||
|
setattr(thread_local, key, value)
|
||||||
|
return value
|
||||||
|
Loading…
Reference in New Issue
Block a user