summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Emitter.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-09 18:27:58 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-09 18:27:58 +0000
commitca9e4073d50175daa12dba5f197f3324eb2722cc (patch)
treeee1813a45b738c456b4bc3eb72e19e78d1b35b36 /cpp/src/Ice/Emitter.cpp
parentremoved pickler, native (diff)
downloadice-ca9e4073d50175daa12dba5f197f3324eb2722cc.tar.bz2
ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.tar.xz
ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.zip
IntStream
Diffstat (limited to 'cpp/src/Ice/Emitter.cpp')
-rw-r--r--cpp/src/Ice/Emitter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/Emitter.cpp b/cpp/src/Ice/Emitter.cpp
index 67e582eb992..e0abf451614 100644
--- a/cpp/src/Ice/Emitter.cpp
+++ b/cpp/src/Ice/Emitter.cpp
@@ -49,7 +49,7 @@ IceInternal::Emitter::destroyed() const
void
IceInternal::Emitter::prepareRequest(Outgoing* out)
{
- Stream* os = out->os();
+ IntStream* os = out->os();
os->write(protocolVersion);
os->write(encodingVersion);
os->write(requestMsg);
@@ -72,7 +72,7 @@ IceInternal::Emitter::sendRequest(Outgoing* out, bool oneway)
try
{
- Stream* os = out->os();
+ IntStream* os = out->os();
os->i = os->b.begin();
//
@@ -199,7 +199,7 @@ IceInternal::Emitter::flushBatchRequest()
// Reset _batchStream and _batchRequestId, so that new batch
// messages can be sent.
//
- Stream dummy(_instance);
+ IntStream dummy(_instance);
_batchStream.swap(dummy);
assert(_batchStream.b.empty());
}
@@ -229,13 +229,13 @@ IceInternal::Emitter::readable() const
}
void
-IceInternal::Emitter::read(Stream& stream)
+IceInternal::Emitter::read(IntStream& stream)
{
_transceiver->read(stream, 0);
}
void
-IceInternal::Emitter::message(Stream& stream)
+IceInternal::Emitter::message(IntStream& stream)
{
JTCSyncT<JTCMutex> sync(*this);