当前位置: 首页>>代码示例>>Python>>正文


Python asyncio.ProactorEventLoop方法代码示例

本文整理汇总了Python中asyncio.ProactorEventLoop方法的典型用法代码示例。如果您正苦于以下问题:Python asyncio.ProactorEventLoop方法的具体用法?Python asyncio.ProactorEventLoop怎么用?Python asyncio.ProactorEventLoop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在asyncio的用法示例。


在下文中一共展示了asyncio.ProactorEventLoop方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: main

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def main():
    logger.info('VLC Scheduler v%s started.' % version.VERSION)
    
    if sys.platform == 'win32':
        loop = asyncio.ProactorEventLoop()
        asyncio.set_event_loop(loop)
    
    loop = asyncio.get_event_loop()
    
    try:
        loop.run_until_complete(main_coro())
    except Exception as e:
        if config.DEBUG:
            logger.fatal(traceback.format_exc())
        else:
            logger.fatal(str(e))
    finally:
        loop.close()
        logger.info('VLC Scheduler stopped.') 
开发者ID:EugeneDae,项目名称:VLC-Scheduler,代码行数:21,代码来源:vlcscheduler.py

示例2: _can_be_closed_safely

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def _can_be_closed_safely(self):  # pragma: no cover
        def is_proactor_event_loop():
            try:
                from asyncio import ProactorEventLoop
            except ImportError:
                return False
            return isinstance(self._loop, ProactorEventLoop)

        def is_uvloop_event_loop():
            try:
                # noinspection PyPackageRequirements
                from uvloop import Loop
            except ImportError:
                return False
            return isinstance(self._loop, Loop)

        return is_proactor_event_loop() or is_uvloop_event_loop() 
开发者ID:romis2012,项目名称:aiohttp-socks,代码行数:19,代码来源:base_proxy.py

示例3: __init__

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def __init__(self, config_dir):
        self.config_dir = config_dir
        self.config = load_config(config_dir)

        if sys.platform == 'win32':
            self.loop = asyncio.ProactorEventLoop()
        else:
            self.loop = asyncio.get_event_loop()
        executor_opts = {'max_workers': self.config.get('max_workers')}

        self.executor = ThreadPoolExecutor(**executor_opts)
        self.loop.set_default_executor(self.executor)
        self.loop.set_exception_handler(self.loop_exception_handler)

        self.events = Events(self)
        self.http = HttpServer(
            ledfx=self, host=self.config['host'], port=self.config['port'])
        self.exit_code = None 
开发者ID:ahodges9,项目名称:LedFx,代码行数:20,代码来源:core.py

示例4: exec_async_tasks

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def exec_async_tasks(tasks: List[Coroutine]) -> List[Union[None, str]]:
    """
    Execute tasks asynchronously
    """
    # TODO: asyncio API is nicer in python 3.7
    if platform.system() == 'Windows':
        loop = asyncio.ProactorEventLoop()
        asyncio.set_event_loop(loop)
    else:
        loop = asyncio.get_event_loop()

    try:
        errors = loop.run_until_complete(asyncio.gather(*tasks))
    finally:
        loop.close()
    return errors 
开发者ID:nosarthur,项目名称:gita,代码行数:18,代码来源:utils.py

示例5: main

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def main():
    args = parse_args()

    eh = build_EquihashInputHeader(args)
    if args.solver_type == 'tromp':
        solver = TrompSolver(args.solver, eh, args.rounds, args.nonce, args.threads)
    elif args.solver_type == 'silentarmy':
        solver = SilentarmySolver(args.solver, eh, args.rounds, args.nonce)

    # as if I cared about windows users...
    if sys.platform == "win32":
        loop = asyncio.ProactorEventLoop()
        asyncio.set_event_loop(loop)
    else:
        loop = asyncio.get_event_loop()

    try:
        solution, nonce = loop.run_until_complete(solver.run())
        h = CZBlockHeader.from_EquihashHeader(eh, solution, nonce)
        print('Solution found!\nHeader Hash: {}\nNonce: {}\n{}'
                .format(b2lx(h.GetHash()), b2lx(nonce), b2x(solution)))
    except SolverException as e:
        warn('{}\nExiting.'.format(e))
    finally:
        loop.close() 
开发者ID:sebastianst,项目名称:GenesisZ,代码行数:27,代码来源:genesis.py

示例6: __init__

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def __init__(self):
        import asyncio
        import multiprocessing
        import signal
        import concurrent.futures

        if sys.platform == 'win32':
            loop = asyncio.ProactorEventLoop()
            asyncio.set_event_loop(loop)
            multiprocessing.set_start_method('spawn')
            executor = concurrent.futures.ProcessPoolExecutor()
        else:
            # The ProcessPoolExecutor is a barely usable for our interactive use
            # case. On SIGINT any busy executor should stop. The only way how this
            # does not explode is that we ignore SIGINT before spawning the process
            # pool and re-enable SIGINT in every executor. In the main process we
            # have to ignore BrokenProcessPool errors as we will likely hit them.
            # To "prime" the process pool a dummy workload must be executed because
            # the processes are spawned lazily.
            loop = asyncio.get_event_loop()
            origSigInt = signal.getsignal(signal.SIGINT)
            signal.signal(signal.SIGINT, signal.SIG_IGN)
            # fork early before process gets big
            if sys.platform == 'msys':
                multiprocessing.set_start_method('fork')
            else:
                multiprocessing.set_start_method('forkserver')
            executor = concurrent.futures.ProcessPoolExecutor()
            executor.submit(dummy).result()
            signal.signal(signal.SIGINT, origSigInt)
        loop.set_default_executor(executor)

        self.__loop = loop
        self.__executor = executor 
开发者ID:BobBuildTool,项目名称:bob,代码行数:36,代码来源:utils.py

示例7: get_loop

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def get_loop():
    """
    Get optimal event loop for the platform.
    """
    loop = None
    if sys.platform == 'win32':
        loop = asyncio.ProactorEventLoop()
    else:
        with suppress(ImportError):
            import uvloop
            loop = uvloop.Loop()
    return loop or asyncio.get_event_loop() 
开发者ID:erdewit,项目名称:distex,代码行数:14,代码来源:util.py

示例8: setUp

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def setUp(self):
            self.loop = asyncio.ProactorEventLoop()
            self.set_event_loop(self.loop) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:5,代码来源:test_subprocess.py

示例9: create_event_loop

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def create_event_loop(self):
            return asyncio.ProactorEventLoop() 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:4,代码来源:test_events.py

示例10: setUp

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def setUp(self):
        self.loop = asyncio.ProactorEventLoop()
        self.set_event_loop(self.loop) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:5,代码来源:test_windows_events.py

示例11: get_ioloop

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def get_ioloop() -> asyncio.BaseEventLoop:
    loop = asyncio.get_event_loop()
    if sys.platform == 'win32' and not isinstance(loop, asyncio.ProactorEventLoop):
        loop = asyncio.ProactorEventLoop()
        ctlc_hotfix(loop)
        asyncio.set_event_loop(loop)
    return loop 
开发者ID:fy0,项目名称:slim,代码行数:9,代码来源:async_run.py

示例12: run_async

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def run_async(func: callable):
    """Run async functions with the right event loop."""
    if sys.platform.startswith('win'):
        loop = asyncio.ProactorEventLoop()
    else:
        loop = asyncio.get_event_loop()
    return loop.run_until_complete(func) 
开发者ID:TG-UserBot,项目名称:TG-UserBot,代码行数:9,代码来源:pluginManager.py

示例13: get_event_loop

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def get_event_loop(self, force_fresh=False):
        if sys.platform == 'linux' or sys.platform == 'darwin':
            if force_fresh:
                return asyncio.new_event_loop()
            loop = asyncio.get_event_loop()
            if loop.is_closed():
                return asyncio.new_event_loop()
            return loop
        elif sys.platform == 'win32':
            if force_fresh:
                return asyncio.ProactorEventLoop()
            loop = asyncio.get_event_loop()
            if isinstance(loop, asyncio.ProactorEventLoop) and not loop.is_closed():
                return loop
            return asyncio.ProactorEventLoop() 
开发者ID:qwertyquerty,项目名称:pypresence,代码行数:17,代码来源:baseclient.py

示例14: main

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def main():
    if os.name == 'nt':
        loop = asyncio.ProactorEventLoop()
        asyncio.set_event_loop(loop)
    else:
        loop = asyncio.get_event_loop()
    loop.run_until_complete(start(
        'sleep 2; wc', input=[b'foo bar baz\n'*300 for i in range(100)]))
    loop.close() 
开发者ID:hhstore,项目名称:annotated-py-projects,代码行数:11,代码来源:subprocess_shell.py

示例15: setUp

# 需要导入模块: import asyncio [as 别名]
# 或者: from asyncio import ProactorEventLoop [as 别名]
def setUp(self):
            super().setUp()
            self.loop = asyncio.ProactorEventLoop()
            self.set_event_loop(self.loop) 
开发者ID:ShikyoKira,项目名称:Project-New-Reign---Nemesis-Main,代码行数:6,代码来源:test_subprocess.py


注:本文中的asyncio.ProactorEventLoop方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。