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


Python Observable.to_async方法代码示例

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


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

示例1: start

# 需要导入模块: from rx.observable import Observable [as 别名]
# 或者: from rx.observable.Observable import to_async [as 别名]
    def start(cls, func, scheduler=None):
        """Invokes the specified function asynchronously on the specified
        scheduler, surfacing the result through an observable sequence.

        Example:
        res = rx.Observable.start(lambda: pprint('hello'))
        res = rx.Observable.start(lambda: pprint('hello'), rx.Scheduler.timeout)

        Keyword arguments:
        func -- {Function} Function to run asynchronously.
        scheduler -- {Scheduler} [Optional] Scheduler to run the function on. If
            not specified, defaults to Scheduler.timeout.

        Returns {Observable} An observable sequence exposing the function's
        result value, or an exception.

        Remarks:
        The function is called immediately, not during the subscription of the
        resulting sequence. Multiple subscriptions to the resulting sequence can
        observe the function's result."""

        return Observable.to_async(func, scheduler)()
开发者ID:jesonjn,项目名称:RxPY,代码行数:24,代码来源:start.py

示例2: create

# 需要导入模块: from rx.observable import Observable [as 别名]
# 或者: from rx.observable.Observable import to_async [as 别名]
        def create():
            def func(a, b, c, d):
                return a + b + c + d

            return Observable.to_async(func, scheduler)(1, 2, 3, 4)
开发者ID:michaelandersen,项目名称:RxPY,代码行数:7,代码来源:test_toasync.py


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