全局ws-2
This commit is contained in:
@ -8,7 +8,8 @@
|
||||
|
||||
"""
|
||||
import multiprocessing
|
||||
|
||||
global active_connections
|
||||
global active_connections_dist
|
||||
|
||||
def _init(): # 初始化
|
||||
# 中断标志
|
||||
@ -16,14 +17,18 @@ def _init(): # 初始化
|
||||
_global_dict = {}
|
||||
|
||||
# ws列表存储
|
||||
global active_connections
|
||||
active_connections = multiprocessing.Manager().list()
|
||||
|
||||
# ws字典存储
|
||||
global active_connections_dist
|
||||
active_connections_dist = multiprocessing.Manager().dict()
|
||||
|
||||
|
||||
def get_active_connections():
|
||||
return active_connections
|
||||
|
||||
def get_active_connections_dist():
|
||||
return active_connections_dist
|
||||
|
||||
def set_value(key, value):
|
||||
# 定义一个全局变量
|
||||
_global_dict[key] = value
|
||||
|
Reference in New Issue
Block a user