diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-06-01 18:24:25 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-06-01 18:24:25 +0000 |
commit | 5c8391a0f701de4dc32aa84e93236e850e357a02 (patch) | |
tree | ef31dc228315ac7e0b17106213c2c39556b8376a /py/modules/IcePy/Operation.cpp | |
parent | Pass init data rather than logger (diff) | |
download | ice-5c8391a0f701de4dc32aa84e93236e850e357a02.tar.bz2 ice-5c8391a0f701de4dc32aa84e93236e850e357a02.tar.xz ice-5c8391a0f701de4dc32aa84e93236e850e357a02.zip |
Added thead notification callbacks
Diffstat (limited to 'py/modules/IcePy/Operation.cpp')
-rw-r--r-- | py/modules/IcePy/Operation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/modules/IcePy/Operation.cpp b/py/modules/IcePy/Operation.cpp index 29d774d41c7..b07cca01751 100644 --- a/py/modules/IcePy/Operation.cpp +++ b/py/modules/IcePy/Operation.cpp @@ -471,7 +471,7 @@ IcePy::OperationI::OperationI(const char* name, PyObject* mode, int amd, PyObjec PyObject* IcePy::OperationI::invoke(const Ice::ObjectPrx& proxy, PyObject* args, PyObject* pyctx) { - Ice::CommunicatorPtr communicator = proxy->ice_communicator(); + Ice::CommunicatorPtr communicator = proxy->ice_getCommunicator(); // // Marshal the input parameters to a byte sequence. @@ -584,7 +584,7 @@ IcePy::OperationI::invoke(const Ice::ObjectPrx& proxy, PyObject* args, PyObject* PyObject* IcePy::OperationI::invokeAsync(const Ice::ObjectPrx& proxy, PyObject* callback, PyObject* args, PyObject* pyctx) { - Ice::CommunicatorPtr communicator = proxy->ice_communicator(); + Ice::CommunicatorPtr communicator = proxy->ice_getCommunicator(); // // Marshal the input parameters to a byte sequence. |