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

Method SyncServer

performance-tests/DCPS/Sync/SyncServer.cpp:65–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65SyncServer::SyncServer (int argc, ACE_TCHAR* argv[])
66 : pub_count_ (1), sub_count_ (1)
67{
68 try
69 {
70 this->parse_args (argc, argv);
71
72 sync_server_.reset (new SyncServer_i (pub_count_, sub_count_
73 , CORBA::ORB::_nil()));
74 }
75 catch (SyncServer_i::InitError& e) {
76 throw InitError (e);
77 }
78 catch ( CORBA::Exception& ex) {
79 throw InitError (ex._info().c_str());
80 }
81}
82
83bool
84SyncServer::run (void)

Callers

nothing calls this directly

Calls 3

parse_argsMethod · 0.95
_infoMethod · 0.80
resetMethod · 0.45

Tested by

no test coverage detected