Interface TraceCallbacks

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
DebugCommand.Tracer

public interface TraceCallbacks extends AutoCloseable
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    onCall(int pDepth, Identifier pFunction, int pCommands)
     
    void
    onCommand(int pDepth, String pCommand)
     
    void
    onError(String pErrorMessage)
     
    void
    onReturn(int pDepth, String pCommand, int pReturnValue)
     
  • Method Details

    • onCommand

      void onCommand(int pDepth, String pCommand)
    • onReturn

      void onReturn(int pDepth, String pCommand, int pReturnValue)
    • onError

      void onError(String pErrorMessage)
    • onCall

      void onCall(int pDepth, Identifier pFunction, int pCommands)
    • close

      void close()
      Specified by:
      close in interface AutoCloseable