diff options
Diffstat (limited to 'java/src/IceInternal/Outgoing.java')
-rw-r--r-- | java/src/IceInternal/Outgoing.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/java/src/IceInternal/Outgoing.java b/java/src/IceInternal/Outgoing.java index 1371fc76e5b..6640129de61 100644 --- a/java/src/IceInternal/Outgoing.java +++ b/java/src/IceInternal/Outgoing.java @@ -27,15 +27,16 @@ public final class Outgoing } // - // These functions allow this object to be reused, rather than - // reallocated. + // These functions allow this object to be reused, rather than reallocated. // public void - reset(String operation, Ice.OperationMode mode, java.util.Map context) + reset(Reference ref, String operation, Ice.OperationMode mode, java.util.Map context, boolean compress) throws NonRepeatable { + _reference = ref; _state = StateUnsent; _exception = null; + _compress = compress; writeHeader(operation, mode, context); } |