diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-12-04 19:43:10 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-12-04 19:43:10 +0000 |
commit | 996be326b98f2c5bb776ba68dd2b3d8b2861a12a (patch) | |
tree | 446bb318a97f7e64b35f299407f03868942c7c0f /cpp/src/IceGrid/NodeI.cpp | |
parent | Removed -single_module, it doesn't seem to be neccessary anymore (diff) | |
download | ice-996be326b98f2c5bb776ba68dd2b3d8b2861a12a.tar.bz2 ice-996be326b98f2c5bb776ba68dd2b3d8b2861a12a.tar.xz ice-996be326b98f2c5bb776ba68dd2b3d8b2861a12a.zip |
More cleanup
Diffstat (limited to 'cpp/src/IceGrid/NodeI.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeI.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/NodeI.cpp b/cpp/src/IceGrid/NodeI.cpp index 81a29709767..e1ddd0cc112 100644 --- a/cpp/src/IceGrid/NodeI.cpp +++ b/cpp/src/IceGrid/NodeI.cpp @@ -493,9 +493,15 @@ NodeI::registerWithReplica(const InternalRegistryPrx& replica, const Ice::Curren } void +NodeI::replicaInit(const InternalRegistryPrxSeq& replicas, const Ice::Current&) +{ + _sessions.replicaInit(replicas); +} + +void NodeI::replicaAdded(const InternalRegistryPrx& replica, const Ice::Current&) { - _sessions.replicaAdded(replica, false); + _sessions.replicaAdded(replica); } void @@ -611,6 +617,12 @@ NodeI::getFileCache() const return _fileCache; } +NodePrx +NodeI::getProxy() const +{ + return _proxy; +} + string NodeI::getOutputDir() const { @@ -626,7 +638,7 @@ NodeI::getRedirectErrToOut() const NodeSessionPrx NodeI::registerWithRegistry(const InternalRegistryPrx& registry) { - return registry->registerNode(_name, _proxy, _platform.getNodeInfo()); + return registry->registerNode(_platform.getNodeInfo(), _proxy); } void |