Interface ListActiveBreakpointsResponseOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Breakpoint getBreakpoints​(int index)
      List of all active breakpoints.
      int getBreakpointsCount()
      List of all active breakpoints.
      List<Breakpoint> getBreakpointsList()
      List of all active breakpoints.
      BreakpointOrBuilder getBreakpointsOrBuilder​(int index)
      List of all active breakpoints.
      List<? extends BreakpointOrBuilder> getBreakpointsOrBuilderList()
      List of all active breakpoints.
      String getNextWaitToken()
      A token that can be used in the next method call to block until the list of breakpoints changes.
      com.google.protobuf.ByteString getNextWaitTokenBytes()
      A token that can be used in the next method call to block until the list of breakpoints changes.
      boolean getWaitExpired()
      If set to `true`, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getBreakpointsList

        List<Breakpoint> getBreakpointsList()
         List of all active breakpoints.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpoints

        Breakpoint getBreakpoints​(int index)
         List of all active breakpoints.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpointsCount

        int getBreakpointsCount()
         List of all active breakpoints.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpointsOrBuilderList

        List<? extends BreakpointOrBuilder> getBreakpointsOrBuilderList()
         List of all active breakpoints.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpointsOrBuilder

        BreakpointOrBuilder getBreakpointsOrBuilder​(int index)
         List of all active breakpoints.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getNextWaitToken

        String getNextWaitToken()
         A token that can be used in the next method call to block until
         the list of breakpoints changes.
         
        string next_wait_token = 2;
        Returns:
        The nextWaitToken.
      • getNextWaitTokenBytes

        com.google.protobuf.ByteString getNextWaitTokenBytes()
         A token that can be used in the next method call to block until
         the list of breakpoints changes.
         
        string next_wait_token = 2;
        Returns:
        The bytes for nextWaitToken.
      • getWaitExpired

        boolean getWaitExpired()
         If set to `true`, indicates that there is no change to the
         list of active breakpoints and the server-selected timeout has expired.
         The `breakpoints` field would be empty and should be ignored.
         
        bool wait_expired = 3;
        Returns:
        The waitExpired.