GetAllEvent

Return all discovered events with their source resource.

Syntax

Susano.GetAllEvent() -> { { resource = "<string>", event = "<string>" }, ... }

Parameters

None

Return(s)

events (array of tables): Each entry { resource = string, event = string }.

Behavior

Order matches the internal capture order.

Entries are not deduplicated.

Strings are returned as-is (case preserved).

Example(s)

local all = Susano.GetAllEvent()
for i, ev in ipairs(all) do
  print(("[%03d] %s :: %s"):format(i, ev.resource, ev.event))
end
print("total:", #all)

Last updated