diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-01-19 16:46:11 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-01-19 16:46:11 -0800 |
commit | d5dd7c866e9e1dc59dc7e127eb39f641530bf823 (patch) | |
tree | 61771e4f322a7138b643d5325a6d10acea30fb84 /cpp/src/Ice/Outgoing.cpp | |
parent | Deprecate ice_name and add ice_id (diff) | |
download | ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.tar.bz2 ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.tar.xz ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.zip |
ICE-6861 - removing public stream API
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index ca04e352075..acd1a5e829e 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -91,7 +91,7 @@ ProxyOutgoingBase::completed(const Ice::Exception& ex) } void -ProxyOutgoingBase::completed(BasicStream& is) +ProxyOutgoingBase::completed(InputStream&) { assert(false); // Must be overriden } @@ -406,7 +406,7 @@ Outgoing::abort(const LocalException& ex) } void -Outgoing::completed(BasicStream& is) +Outgoing::completed(InputStream& is) { Monitor<Mutex>::Lock sync(_monitor); @@ -580,12 +580,12 @@ Outgoing::throwUserException() { try { - _is.startReadEncaps(); + _is.startEncapsulation(); _is.throwException(); } catch(const Ice::UserException&) { - _is.endReadEncaps(); + _is.endEncapsulation(); throw; } } @@ -687,7 +687,7 @@ ConnectionFlushBatch::completed(const Ice::Exception& ex) } void -ConnectionFlushBatch::completed(BasicStream& is) +ConnectionFlushBatch::completed(InputStream&) { assert(false); } |