MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / InfoRepo

Method InfoRepo

dds/InfoRepo/DCPSInfoRepoServ.cpp:41–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39#include <sstream>
40
41InfoRepo::InfoRepo(int argc, ACE_TCHAR *argv[])
42: ior_file_(ACE_TEXT("repo.ior"))
43, listen_address_given_(0)
44#ifdef DDS_HAS_MINIMUM_BIT
45, use_bits_(false)
46#else
47, use_bits_(true)
48#endif
49, resurrect_(true)
50, finalized_(false)
51, servant_finalized_(false)
52, federatorConfig_(argc, argv)
53, federator_(this->federatorConfig_)
54, lock_()
55, cond_(lock_)
56, shutdown_complete_(false)
57, shutdown_signal_(0)
58, dispatch_cleanup_delay_(30,0)
59{
60 try {
61 this->init();
62 } catch (...) {
63 this->finalize();
64 throw;
65 }
66}
67
68InfoRepo::~InfoRepo()
69{

Callers

nothing calls this directly

Calls 2

initMethod · 0.95
finalizeMethod · 0.95

Tested by

no test coverage detected