summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/AsyncStatus.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-11-25 15:05:41 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-11-25 15:05:41 +0100
commit2fca2c1309c4991b21ff956709068122f19eef4a (patch)
treeb90e6fe1450508f5ce2962e21627a4535414e1a6 /java/src/IceInternal/AsyncStatus.java
parentUpdate depends for SQL directories (diff)
downloadice-2fca2c1309c4991b21ff956709068122f19eef4a.tar.bz2
ice-2fca2c1309c4991b21ff956709068122f19eef4a.tar.xz
ice-2fca2c1309c4991b21ff956709068122f19eef4a.zip
- Cleaned up test/Ice/operations test
- Added test/Ice/ami test - sent callback is now always called
Diffstat (limited to 'java/src/IceInternal/AsyncStatus.java')
-rw-r--r--java/src/IceInternal/AsyncStatus.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/java/src/IceInternal/AsyncStatus.java b/java/src/IceInternal/AsyncStatus.java
new file mode 100644
index 00000000000..6d62be78cb4
--- /dev/null
+++ b/java/src/IceInternal/AsyncStatus.java
@@ -0,0 +1,17 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+package IceInternal;
+
+public class AsyncStatus
+{
+ public static final int Queued = 0;
+ public static final int Sent = 1;
+ public static final int InvokeSentCallback = 2;
+}