summaryrefslogtreecommitdiff
path: root/java/src/Ice/OutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/Ice/OutputStream.java')
-rw-r--r--java/src/Ice/OutputStream.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/java/src/Ice/OutputStream.java b/java/src/Ice/OutputStream.java
index 91263e021ea..a8597db6064 100644
--- a/java/src/Ice/OutputStream.java
+++ b/java/src/Ice/OutputStream.java
@@ -217,9 +217,14 @@ public interface OutputStream
* Marks the start of a new slice for an Ice object or user exception.
*
* @param typeId The Slice type ID corresponding to this slice.
+
+ * @param compactId The Slice compact type ID corresponding to
+ * this slice or -1 if no compact ID is defined for the
+ * type ID.
+
* @param last True if this is the last slice, false otherwise.
**/
- void startSlice(String typeId, boolean last);
+ void startSlice(String typeId, int compactId, boolean last);
/**
* Marks the end of a slice for an Ice object or user exception.