Part of twisted.spread.util View Source View In Hierarchy
Method | callRemote | Call a specially-designated local method. |
Method | remoteMethod | Undocumented |
self.callRemote('x') will first try to invoke a method named sync_x and return its result (which should probably be a Deferred). Second, it will look for a method called async_x, which will be called and then have its result (or Failure) automatically wrapped in a Deferred.