diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-01 18:31:27 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-01 18:31:27 +0000 |
commit | f579108c1ebffc9b6f720cbdb01712e17c0c1e36 (patch) | |
tree | f3a46b2f79e5b3273bb8442245074a7ed424d3f4 /cpp/src/IceStorm/Subscriber.cpp | |
parent | bug fix (diff) | |
download | ice-f579108c1ebffc9b6f720cbdb01712e17c0c1e36.tar.bz2 ice-f579108c1ebffc9b6f720cbdb01712e17c0c1e36.tar.xz ice-f579108c1ebffc9b6f720cbdb01712e17c0c1e36.zip |
nonmutating on the wire
Diffstat (limited to 'cpp/src/IceStorm/Subscriber.cpp')
-rw-r--r-- | cpp/src/IceStorm/Subscriber.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceStorm/Subscriber.cpp b/cpp/src/IceStorm/Subscriber.cpp index 67bfb29b87f..9c31acfa1df 100644 --- a/cpp/src/IceStorm/Subscriber.cpp +++ b/cpp/src/IceStorm/Subscriber.cpp @@ -122,11 +122,10 @@ Subscriber::flush() } void -Subscriber::publish(const string& op, const std::vector< ::Ice::Byte>& blob) +Subscriber::publish(const string& op, bool nonmutating, const std::vector< ::Ice::Byte>& blob) { try { - bool nonmutating = true; std::vector< ::Ice::Byte> dummy; _obj->ice_invoke(op, nonmutating, blob, dummy); } |