Class ContinueArguments

java.lang.Object
com.oracle.truffle.tools.dap.types.JSONBase
com.oracle.truffle.tools.dap.types.ContinueArguments

public class ContinueArguments extends JSONBase
Arguments for 'continue' request.
  • Method Details

    • getThreadId

      public int getThreadId()
      Continue execution for the specified thread (if possible). If the backend cannot continue on a single thread but will continue on all threads, it should set the 'allThreadsContinued' attribute in the response to true.
    • setThreadId

      public ContinueArguments setThreadId(int threadId)
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static ContinueArguments create(Integer threadId)