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 Type
    Method
    Description
    void
    init(DebugMonitor monitor, Connection connection)
    initiate the instantiated handler.
    void
    start the listening process in an extra thread, if required
  • Method Details

    • init

      void init(DebugMonitor monitor, Connection connection)
      initiate the instantiated handler. It gets the DebugMonitor and Connection instances that may be needed for the handler to do it's work
      the handler may be registered at the DebugMonitor dependent on the type of handler.
      Parameters:
      monitor - the DebugMonitor
      connection - the connection to the debugger framework
    • startListener

      void startListener()
      start the listening process in an extra thread, if required