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

Method wait_time

libminifi/include/utils/Monitors.h:156–158  ·  view source on GitHub ↗

* Time to wait before re-running this task if necessary * @return milliseconds since epoch after which we are eligible to re-run this task. */

Source from the content-addressed store, hash-verified

154 * @return milliseconds since epoch after which we are eligible to re-run this task.
155 */
156 std::chrono::milliseconds wait_time() override {
157 return current_wait_.load();
158 }
159
160 private:
161 std::atomic<std::chrono::milliseconds> current_wait_ {std::chrono::milliseconds(0)};

Callers 2

runMethod · 0.45
getWaitTimeMethod · 0.45

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected