How to use the appier.build_future function in appier

To help you get started, we’ve selected a few appier examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hivesolutions / appier / examples / async / async_old.py View on Github external
def handler(self):
        message = "hello world\n"
        for value in appier.sleep(3.0): yield value
        message += "timeout: %.2f\n" % 3.0
        future = appier.build_future()
        for value in self.calculator(future, 2, 2): yield value
        message += "result: %d\n" % future.result()
        yield message
github hivesolutions / appier / examples / async / async_old.py View on Github external
def handler_partial(self):
        yield "hello world\n"
        for value in appier.sleep(3.0): yield value
        yield "timeout: %.2f\n" % 3.0
        result = appier.build_future()
        for value in self.calculator(result, 2, 2): yield value
        yield "result: %d\n" % result.result()