summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/AsyncStatus.java
diff options
context:
space:
mode:
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;
+}