Interface ListActiveBreakpointsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListActiveBreakpointsRequest
,ListActiveBreakpointsRequest.Builder
public interface ListActiveBreakpointsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDebuggeeId()
Required.com.google.protobuf.ByteString
getDebuggeeIdBytes()
Required.boolean
getSuccessOnTimeout()
If set to `true` (recommended), returns `google.rpc.Code.OK` status and sets the `wait_expired` response field to `true` when the server-selected timeout has expired.String
getWaitToken()
A token that, if specified, blocks the method call until the list of active breakpoints has changed, or a server-selected timeout has expired.com.google.protobuf.ByteString
getWaitTokenBytes()
A token that, if specified, blocks the method call until the list of active breakpoints has changed, or a server-selected timeout has expired.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDebuggeeId
String getDebuggeeId()
Required. Identifies the debuggee.
string debuggee_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The debuggeeId.
-
getDebuggeeIdBytes
com.google.protobuf.ByteString getDebuggeeIdBytes()
Required. Identifies the debuggee.
string debuggee_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for debuggeeId.
-
getWaitToken
String getWaitToken()
A token that, if specified, blocks the method call until the list of active breakpoints has changed, or a server-selected timeout has expired. The value should be set from the `next_wait_token` field in the last response. The initial value should be set to `"init"`.
string wait_token = 2;
- Returns:
- The waitToken.
-
getWaitTokenBytes
com.google.protobuf.ByteString getWaitTokenBytes()
A token that, if specified, blocks the method call until the list of active breakpoints has changed, or a server-selected timeout has expired. The value should be set from the `next_wait_token` field in the last response. The initial value should be set to `"init"`.
string wait_token = 2;
- Returns:
- The bytes for waitToken.
-
getSuccessOnTimeout
boolean getSuccessOnTimeout()
If set to `true` (recommended), returns `google.rpc.Code.OK` status and sets the `wait_expired` response field to `true` when the server-selected timeout has expired. If set to `false` (deprecated), returns `google.rpc.Code.ABORTED` status when the server-selected timeout has expired.
bool success_on_timeout = 3;
- Returns:
- The successOnTimeout.
-
-