We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be4b76 commit 4f9dee5Copy full SHA for 4f9dee5
exporters/user_events/include/opentelemetry/exporters/user_events/logs/exporter.h
@@ -42,6 +42,12 @@ class Exporter final : public opentelemetry::sdk::logs::LogRecordExporter
42
bool Shutdown(
43
std::chrono::microseconds timeout = (std::chrono::microseconds::max)()) noexcept override;
44
45
+ bool ForceFlush(
46
+ std::chrono::microseconds timeout = (std::chrono::microseconds::max)()) noexcept override {
47
+ // TODO: implement forceflush
48
+ return true;
49
+ }
50
+
51
bool isShutdown() const noexcept;
52
53
private:
0 commit comments