diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-02-25 16:49:12 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-02-25 16:49:12 +0100 |
commit | 1d9fbeaa07f2c1a1e657197a65ec158cb1779ccc (patch) | |
tree | c227933846718c54786c05ffd51c8b8b384f8ebe /cpp/src/IceGrid/RegistryI.h | |
parent | Fixed GCC 4.3 build failures (diff) | |
download | ice-1d9fbeaa07f2c1a1e657197a65ec158cb1779ccc.tar.bz2 ice-1d9fbeaa07f2c1a1e657197a65ec158cb1779ccc.tar.xz ice-1d9fbeaa07f2c1a1e657197a65ec158cb1779ccc.zip |
Changed the IceGrid node to be more conservative when removing server directories
Diffstat (limited to 'cpp/src/IceGrid/RegistryI.h')
-rw-r--r-- | cpp/src/IceGrid/RegistryI.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cpp/src/IceGrid/RegistryI.h b/cpp/src/IceGrid/RegistryI.h index bc3e9ece731..060dd405103 100644 --- a/cpp/src/IceGrid/RegistryI.h +++ b/cpp/src/IceGrid/RegistryI.h @@ -48,10 +48,10 @@ class RegistryI : public Registry { public: - RegistryI(const Ice::CommunicatorPtr&, const TraceLevelsPtr&); + RegistryI(const Ice::CommunicatorPtr&, const TraceLevelsPtr&, bool); ~RegistryI(); - bool start(bool); + bool start(); void stop(); virtual SessionPrx createSession(const std::string&, const std::string&, const Ice::Current&); @@ -82,15 +82,15 @@ private: InternalRegistryPrx setupInternalRegistry(const Ice::ObjectAdapterPtr&); void setupNullPermissionsVerifier(const Ice::ObjectAdapterPtr&); bool setupUserAccountMapper(const Ice::ObjectAdapterPtr&); - Ice::ObjectAdapterPtr setupClientSessionFactory(const Ice::ObjectAdapterPtr&, const LocatorPrx&, bool); + Ice::ObjectAdapterPtr setupClientSessionFactory(const Ice::ObjectAdapterPtr&, const LocatorPrx&); Ice::ObjectAdapterPtr setupAdminSessionFactory(const Ice::ObjectAdapterPtr&, const Ice::ObjectPtr&, - const LocatorPrx&, bool); + const LocatorPrx&); void setupThreadPool(const Ice::PropertiesPtr&, const std::string&, int, int = 0); Glacier2::PermissionsVerifierPrx getPermissionsVerifier(const Ice::ObjectAdapterPtr&, const LocatorPrx&, - const std::string&, const std::string&, bool); + const std::string&, const std::string&); - Glacier2::SSLPermissionsVerifierPrx getSSLPermissionsVerifier(const LocatorPrx&, const std::string&, bool); + Glacier2::SSLPermissionsVerifierPrx getSSLPermissionsVerifier(const LocatorPrx&, const std::string&); Glacier2::SSLInfo getSSLInfo(const Ice::ConnectionPtr&, std::string&); NodePrxSeq registerReplicas(const InternalRegistryPrx&, const InternalRegistryPrxSeq&, const NodePrxSeq&); @@ -98,6 +98,7 @@ private: const Ice::CommunicatorPtr _communicator; const TraceLevelsPtr _traceLevels; + const bool _nowarn; DatabasePtr _database; Ice::ObjectAdapterPtr _clientAdapter; |