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 de378af commit 0de99a9Copy full SHA for 0de99a9
components/core/src/clp/ffi/ir_stream/Deserializer.hpp
@@ -158,6 +158,14 @@ class Deserializer {
158
*/
159
[[nodiscard]] auto get_metadata() const -> nlohmann::json const& { return m_metadata; }
160
161
+ /**
162
+ * @return The number of log events (log event IR units) that have been deserialized from the
163
+ * current stream.
164
+ */
165
+ [[nodiscard]] auto get_num_log_events_deserialized() const -> size_t {
166
+ return m_next_log_event_idx;
167
+ }
168
+
169
private:
170
// Factory function
171
/**
0 commit comments