本文整理匯總了Python中dummy_threading.Event方法的典型用法代碼示例。如果您正苦於以下問題:Python dummy_threading.Event方法的具體用法?Python dummy_threading.Event怎麽用?Python dummy_threading.Event使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dummy_threading
的用法示例。
在下文中一共展示了dummy_threading.Event方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: import dummy_threading [as 別名]
# 或者: from dummy_threading import Event [as 別名]
def __init__(self, viz):
"""!
Initializer function.
@param self: class object.
@param viz: class object.
@return none
"""
super(SimulationThread, self).__init__()
assert isinstance(viz, Visualizer)
self.viz = viz # Visualizer object
self.lock = threading.Lock()
self.go = threading.Event()
self.go.clear()
self.target_time = 0 # in seconds
self.quit = False
self.sim_helper = ns.visualizer.PyViz()
self.pause_messages = []
示例2: __init__
# 需要導入模塊: import dummy_threading [as 別名]
# 或者: from dummy_threading import Event [as 別名]
def __init__(self, server_address, RequestHandlerClass):
"""Constructor. May be extended, do not override."""
self.server_address = server_address
self.RequestHandlerClass = RequestHandlerClass
self.__is_shut_down = threading.Event()
self.__shutdown_request = False
示例3: __init__
# 需要導入模塊: import dummy_threading [as 別名]
# 或者: from dummy_threading import Event [as 別名]
def __init__(self, viz):
super(SimulationThread, self).__init__()
assert isinstance(viz, Visualizer)
self.viz = viz # Visualizer object
self.lock = threading.Lock()
self.go = threading.Event()
self.go.clear()
self.target_time = 0 # in seconds
self.quit = False
self.sim_helper = ns.visualizer.PyViz()
self.pause_messages = []
示例4: __init__
# 需要導入模塊: import dummy_threading [as 別名]
# 或者: from dummy_threading import Event [as 別名]
def __init__(self, server_address, RequestHandlerClass):
"""Constructor. May be extended, do not override."""
self.server_address = server_address
self.RequestHandlerClass = RequestHandlerClass
self.__is_shut_down = threading.Event() # @UndefinedVariable
self.__shutdown_request = False
示例5: __init__
# 需要導入模塊: import dummy_threading [as 別名]
# 或者: from dummy_threading import Event [as 別名]
def __init__(self, *args, **kwargs):
super(ThreadedGame, self).__init__(*args, **kwargs)
# events set when actions_on_turn are calculated
self._has_actions_on_turn = [threading.Event()
for _ in range(settings.max_turns + 1)]
# events set when state are calculated
self._has_state = [threading.Event()
for _ in range(settings.max_turns + 1)]