summaryrefslogtreecommitdiff
path: root/java/src/Ice/OutputStream.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-12-19 13:08:44 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-12-19 13:08:44 +0100
commit7c287857f3bd50b806109660d23e2993b7a4b7ad (patch)
treeca0bcebbc06373520b7badd426762b6caa744fe5 /java/src/Ice/OutputStream.java
parentICE-5148 - adding more tests (diff)
downloadice-7c287857f3bd50b806109660d23e2993b7a4b7ad.tar.bz2
ice-7c287857f3bd50b806109660d23e2993b7a4b7ad.tar.xz
ice-7c287857f3bd50b806109660d23e2993b7a4b7ad.zip
ICE-4938: support for compact IDs
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.