diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-12-06 19:14:51 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-12-06 19:14:51 +0000 |
commit | a7de00bbcbe54eefe8a88d3138b7feb16230a880 (patch) | |
tree | a80367731dc95c4c78090c43480588ff56485124 /java/src/IceGridGUI/LiveDeployment/TreeNode.java | |
parent | Added replicated IceStorm demo (diff) | |
download | ice-a7de00bbcbe54eefe8a88d3138b7feb16230a880.tar.bz2 ice-a7de00bbcbe54eefe8a88d3138b7feb16230a880.tar.xz ice-a7de00bbcbe54eefe8a88d3138b7feb16230a880.zip |
Add the ability to write message to server
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/TreeNode.java')
-rwxr-xr-x | java/src/IceGridGUI/LiveDeployment/TreeNode.java | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/TreeNode.java b/java/src/IceGridGUI/LiveDeployment/TreeNode.java index 065ce0cff55..bf1a865eb59 100755 --- a/java/src/IceGridGUI/LiveDeployment/TreeNode.java +++ b/java/src/IceGridGUI/LiveDeployment/TreeNode.java @@ -45,15 +45,16 @@ public abstract class TreeNode extends TreeNodeBase public static final int SIGUSR2 = 9; public static final int SIGTERM = 10; + public static final int WRITE_MESSAGE = 11; - public static final int SHUTDOWN_NODE = 11; - public static final int SHUTDOWN_REGISTRY = 12; + public static final int SHUTDOWN_NODE = 12; + public static final int SHUTDOWN_REGISTRY = 13; - public static final int PATCH_SERVER = 13; + public static final int PATCH_SERVER = 14; - public static final int ADD_OBJECT = 14; + public static final int ADD_OBJECT = 15; - static public final int ACTION_COUNT = 15; + static public final int ACTION_COUNT = 16; public boolean[] getAvailableActions() { @@ -76,6 +77,10 @@ public abstract class TreeNode extends TreeNodeBase { assert false; } + public void writeMessage() + { + assert false; + } public void signal(String s) { assert false; |