Package io.siddhi.core.debugger
Interface SiddhiDebuggerCallback
-
public interface SiddhiDebuggerCallbackCallback to get notification about the events passing through the break points.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebugEvent(ComplexEvent event, String queryName, SiddhiDebugger.QueryTerminal queryTerminal, SiddhiDebugger debugger)Receive the events passing through the registered breakpoints.
-
-
-
Method Detail
-
debugEvent
void debugEvent(ComplexEvent event, String queryName, SiddhiDebugger.QueryTerminal queryTerminal, SiddhiDebugger debugger)
Receive the events passing through the registered breakpoints.- Parameters:
event- ComplexEvent waiting at the breakpointqueryName- Name of the query where the current breakpoint isqueryTerminal- IN or OUT terminal of the querydebugger- SiddhiDebugger to have control over the debug flow within the event caller
-
-