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

Method stop

libminifi/src/core/Repository.cpp:44–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44void Repository::stop() {
45 if (!running_)
46 return;
47 running_ = false;
48 if (thread_.joinable())
49 thread_.join();
50 logger_->log_debug("%s Repository Monitor Thread Stop", name_);
51}
52
53// repoSize
54uint64_t Repository::getRepoSize() {

Callers 3

~ProcessGroupMethod · 0.45
stopProcessingMethod · 0.45

Calls 2

log_debugMethod · 0.80
joinMethod · 0.45

Tested by

no test coverage detected