當前位置: 首頁>>代碼示例>>Python>>正文


Python dummy_threading.Event方法代碼示例

本文整理匯總了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 = [] 
開發者ID:KTH,項目名稱:royal-chaos,代碼行數:20,代碼來源:core.py

示例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 
開發者ID:Soft8Soft,項目名稱:verge3d-blender-addon,代碼行數:8,代碼來源:socketserver.py

示例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 = [] 
開發者ID:ntu-dsi-dcn,項目名稱:ntu-dsi-dcn,代碼行數:13,代碼來源:core.py

示例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 
開發者ID:fabioz,項目名稱:PyDev.Debugger,代碼行數:8,代碼來源:_pydev_SocketServer.py

示例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)] 
開發者ID:RobotGame,項目名稱:rgkit,代碼行數:12,代碼來源:game.py


注:本文中的dummy_threading.Event方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。