cluster/Event: Hide members behind accessors

This commit is contained in:
Arne Welzel 2025-04-10 18:12:04 +02:00
parent 90f94ff4f2
commit 214629e054
3 changed files with 31 additions and 9 deletions

View file

@ -19,7 +19,7 @@ using namespace zeek::cluster;
bool detail::LocalEventHandlingStrategy::DoHandleRemoteEvent(std::string_view topic, detail::Event e) {
zeek::event_mgr.Enqueue(e.Handler(), std::move(e.args), util::detail::SOURCE_BROKER, 0, nullptr, e.timestamp);
zeek::event_mgr.Enqueue(e.Handler(), std::move(e.Args()), util::detail::SOURCE_BROKER, 0, nullptr, e.Timestamp());
return true;
}