summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/NodeServerAdminRouter.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-11-21 17:58:52 -0500
committerBernard Normier <bernard@zeroc.com>2007-11-21 17:58:52 -0500
commit7826d8dd30b3bbbd3be4c65df8260164a9021798 (patch)
tree415bad61d47d08332f3ea6a377dc95b6dea467f9 /cpp/src/IceGrid/NodeServerAdminRouter.h
parentAdded AMI call (diff)
downloadice-7826d8dd30b3bbbd3be4c65df8260164a9021798.tar.bz2
ice-7826d8dd30b3bbbd3be4c65df8260164a9021798.tar.xz
ice-7826d8dd30b3bbbd3be4c65df8260164a9021798.zip
Refactored server-properties access/retrieval from IceGrid admin client
Diffstat (limited to 'cpp/src/IceGrid/NodeServerAdminRouter.h')
-rw-r--r--cpp/src/IceGrid/NodeServerAdminRouter.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/NodeServerAdminRouter.h b/cpp/src/IceGrid/NodeServerAdminRouter.h
new file mode 100644
index 00000000000..c1c7a6b141b
--- /dev/null
+++ b/cpp/src/IceGrid/NodeServerAdminRouter.h
@@ -0,0 +1,32 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 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.
+//
+// **********************************************************************
+
+#ifndef ICE_GRID_NODE_SERVER_ADMIN_ROUTER_H
+#define ICE_GRID_NODE_SERVER_ADMIN_ROUTER_H
+
+#include <IceGrid/NodeI.h>
+
+namespace IceGrid
+{
+
+class NodeServerAdminRouter : public Ice::BlobjectArrayAsync
+{
+public:
+
+ NodeServerAdminRouter(const NodeIPtr&);
+
+ virtual void ice_invoke_async(const Ice::AMD_Array_Object_ice_invokePtr&,
+ const std::pair<const Ice::Byte*, const Ice::Byte*>&,
+ const Ice::Current&);
+
+private:
+ NodeIPtr _node;
+};
+}
+#endif