Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support asynchronous calls (#58) #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jul 28, 2017

  1. Support asynchronous calls (LEW21#58)

    Added support for asynchronous calls of methods. A method is called
    synchronously unless its callback parameter is specified. A callback
    is a function f(*args, returned=None, error=None), where args is
    callback_args specified in the method call, returned is a return
    value of the method and error is an exception raised by the method.
    
    Example of an asynchronous call:
    
    def func(x, y, returned=None, error=None):
      pass
    
    proxy.Method(a, b, callback=func, callback_args=(x, y))
    poncovka committed Jul 28, 2017
    Configuration menu
    Copy the full SHA
    0de4f55 View commit details
    Browse the repository at this point in the history