summaryrefslogtreecommitdiff
path: root/java/src/Ice/ThreadNotification.java
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-06-01 15:31:11 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-06-01 15:31:11 +0000
commitdba48e6aa9feac17c9ee2c02adb90a01c9ebae8e (patch)
tree1f890a3a36238d21c10bb7adba0dc979c2905689 /java/src/Ice/ThreadNotification.java
parentAdded a bunch of missing dependencies on Glacier2 to a few IceGrid (diff)
downloadice-dba48e6aa9feac17c9ee2c02adb90a01c9ebae8e.tar.bz2
ice-dba48e6aa9feac17c9ee2c02adb90a01c9ebae8e.tar.xz
ice-dba48e6aa9feac17c9ee2c02adb90a01c9ebae8e.zip
Added thread start/stop hooks
Diffstat (limited to 'java/src/Ice/ThreadNotification.java')
-rw-r--r--java/src/Ice/ThreadNotification.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/java/src/Ice/ThreadNotification.java b/java/src/Ice/ThreadNotification.java
new file mode 100644
index 00000000000..9d11a72a4fb
--- /dev/null
+++ b/java/src/Ice/ThreadNotification.java
@@ -0,0 +1,16 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 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 Ice;
+
+public interface ThreadNotification
+{
+ void start();
+ void stop();
+}