| 760 | bool stopped() const { return stoppedPromise.isSet(); } |
| 761 | |
| 762 | void stop() { |
| 763 | if (stoppedPromise.canBeSet()) { |
| 764 | TraceEvent(SevDebug, "StoppingTLog", tLogData->dbgid).detail("LogId", logId); |
| 765 | stoppedPromise.send(Void()); |
| 766 | } |
| 767 | } |
| 768 | }; |
| 769 | |
| 770 | template <class T> |
no test coverage detected