Interface RuntimeHandler
- All Known Implementing Classes:
BreakpointRuntimeHandler
,CommandRuntimeHandler
,EventRuntimeHandler
,VariablesRuntimeHandler
public interface RuntimeHandler
base interface for handlers that support the debugger runtime process
-
Method Summary
Modifier and TypeMethodDescriptionvoid
init
(DebugMonitor monitor, Connection connection) initiate the instantiated handler.void
start the listening process in an extra thread, if required
-
Method Details
-
init
initiate the instantiated handler. It gets theDebugMonitor
andConnection
instances that may be needed for the handler to do it's work
the handler may be registered at theDebugMonitor
dependent on the type of handler.- Parameters:
monitor
- the DebugMonitorconnection
- the connection to the debugger framework
-
startListener
void startListener()start the listening process in an extra thread, if required
-