MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / start

Method start

libminifi/src/core/Repository.cpp:34–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32namespace core {
33
34void Repository::start() {
35 if (this->purge_period_ <= 0)
36 return;
37 if (running_)
38 return;
39 running_ = true;
40 thread_ = std::thread(&Repository::threadExecutor, this);
41 logger_->log_debug("%s Repository Monitor Thread Start", name_);
42}
43
44void Repository::stop() {
45 if (!running_)

Callers 1

Calls 1

log_debugMethod · 0.80

Tested by

no test coverage detected