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


Python coros.BoundedSemaphore方法代碼示例

本文整理匯總了Python中gevent.coros.BoundedSemaphore方法的典型用法代碼示例。如果您正苦於以下問題:Python coros.BoundedSemaphore方法的具體用法?Python coros.BoundedSemaphore怎麽用?Python coros.BoundedSemaphore使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gevent.coros的用法示例。


在下文中一共展示了coros.BoundedSemaphore方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from gevent import coros [as 別名]
# 或者: from gevent.coros import BoundedSemaphore [as 別名]
def __init__(self,amqp_info):
        Greenlet.__init__(self)
        ExampleConsumer.__init__(self,amqp_info)
        self.callinfos={}
        self.send_queue=Queue()
        self.lock = BoundedSemaphore(1)
        self.send_greenlet=None


        self.handle_stoping=False
        self.send_stop_evt=Event()

        self.timeout_stop_evt=Event()

        self.timeout_handle_greenlet=gevent.spawn(self.on_timeout_handle)
        self.timeout_handle_greenlet.start() 
開發者ID:liangdas,項目名稱:pymqant,代碼行數:18,代碼來源:amqp_client.py

示例2: __init__

# 需要導入模塊: from gevent import coros [as 別名]
# 或者: from gevent.coros import BoundedSemaphore [as 別名]
def __init__(self, value=1, max_waiters=1):
            MaxWaitersBoundedSemaphore.__init__(
                self, GeventBoundedSemaphore, value, max_waiters) 
開發者ID:DirceuSilvaLabs,項目名稱:noc-orchestrator,代碼行數:5,代碼來源:thread_util.py

示例3: create_semaphore

# 需要導入模塊: from gevent import coros [as 別名]
# 或者: from gevent.coros import BoundedSemaphore [as 別名]
def create_semaphore(max_size, max_waiters, use_greenlets):
    if max_size is None:
        return DummySemaphore()
    elif use_greenlets:
        if max_waiters is None:
            return GeventBoundedSemaphore(max_size)
        else:
            return MaxWaitersBoundedSemaphoreGevent(max_size, max_waiters)
    else:
        if max_waiters is None:
            return BoundedSemaphore(max_size)
        else:
            return MaxWaitersBoundedSemaphoreThread(max_size, max_waiters) 
開發者ID:DirceuSilvaLabs,項目名稱:noc-orchestrator,代碼行數:15,代碼來源:thread_util.py

示例4: __init__

# 需要導入模塊: from gevent import coros [as 別名]
# 或者: from gevent.coros import BoundedSemaphore [as 別名]
def __init__(self,localServer):
        Greenlet.__init__(self)
        self.callinfos={}
        self.localServer=localServer
        self.recv_queue=Queue()
        self.lock = BoundedSemaphore(1)


        self.handle_stoping=False
        self.recv_stop_evt=Event()
        self.timeout_stop_evt=Event()

        self.timeout_handle_greenlet=gevent.spawn(self.on_timeout_handle)
        self.timeout_handle_greenlet.start() 
開發者ID:liangdas,項目名稱:pymqant,代碼行數:16,代碼來源:local_client.py


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