summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/InternalRegistryI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2013-09-03 15:42:19 +0200
committerBenoit Foucher <benoit@zeroc.com>2013-09-03 15:42:19 +0200
commit91f6ebb998532b36fc70187b641a5b7404060422 (patch)
treeac88e961c68e4b09eb819f4b57b9ecac56854567 /cpp/src/IceGrid/InternalRegistryI.cpp
parentICE-5378 - Remove slice35d.dll from Windows installer (diff)
downloadice-91f6ebb998532b36fc70187b641a5b7404060422.tar.bz2
ice-91f6ebb998532b36fc70187b641a5b7404060422.tar.xz
ice-91f6ebb998532b36fc70187b641a5b7404060422.zip
Fixed ICE-5358 - allow IceGrid replica to initialize its database from another replica
Diffstat (limited to 'cpp/src/IceGrid/InternalRegistryI.cpp')
-rw-r--r--cpp/src/IceGrid/InternalRegistryI.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/InternalRegistryI.cpp b/cpp/src/IceGrid/InternalRegistryI.cpp
index aec97926153..94392646544 100644
--- a/cpp/src/IceGrid/InternalRegistryI.cpp
+++ b/cpp/src/IceGrid/InternalRegistryI.cpp
@@ -214,6 +214,24 @@ InternalRegistryI::getReplicas(const Ice::Current&) const
return replicas;
}
+ApplicationInfoSeq
+InternalRegistryI::getApplications(Ice::Long& serial, const Ice::Current&) const
+{
+ return _database->getApplications(serial);
+}
+
+AdapterInfoSeq
+InternalRegistryI::getAdapters(Ice::Long& serial, const Ice::Current&) const
+{
+ return _database->getAdapters(serial);
+}
+
+ObjectInfoSeq
+InternalRegistryI::getObjects(Ice::Long& serial, const Ice::Current&) const
+{
+ return _database->getObjects(serial);
+}
+
void
InternalRegistryI::shutdown(const Ice::Current& /*current*/) const
{