| 61 | void Submit(const Entry&) noexcept override {} |
| 62 | void Flush() override {} |
| 63 | bool TryFlushFor(std::chrono::milliseconds timeout) noexcept override |
| 64 | { |
| 65 | lastTimeoutMs.store((long long)timeout.count()); |
| 66 | flushCalls.fetch_add(1); |
| 67 | return flushResult.load(); |
| 68 | } |
| 69 | void AttachComponent(std::shared_ptr<IChannelComponent>, std::string = {}) override {} |
| 70 | std::shared_ptr<IChannelComponent> GetComponent(std::string) const override { return {}; } |
| 71 | void FlushEntryPointExit() override {} |