~ubuntu-branches/debian/wheezy/protobuf/wheezy

« back to all changes in this revision

Viewing changes to python/google/protobuf/service.py

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2009-11-18 21:47:41 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091118214741-iqv6m4f95faob583
Tags: 2.2.0a-0.1
* Non-maintainer upload 
* New upstream release made this evening correction major SONAME
* debian/control: Updated major version to 5            (Closes: #556563)
* debian/rules: Updated two links to use libproto*5 
* debian/libprotobuf5.shlibs: Added
* debian/libprotoc5.shlibs: Added

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
    and "done" will later be called with the response value.
68
68
 
69
69
    In the blocking case, RpcException will be raised on error.
70
 
    Asynchronous calls must check status via the Failed method of the
71
 
    RpcController.
72
70
 
73
71
    Preconditions:
74
72
    * method_descriptor.service == GetDescriptor
82
80
    Postconditions:
83
81
    * "done" will be called when the method is complete.  This may be
84
82
      before CallMethod() returns or it may be at some point in the future.
 
83
    * If the RPC failed, the response value passed to "done" will be None.
 
84
      Further details about the failure can be found by querying the
 
85
      RpcController.
85
86
    """
86
87
    raise NotImplementedError
87
88