Class Controller2Grpc
- java.lang.Object
-
- com.google.devtools.clouddebugger.v2.Controller2Grpc
-
@Generated(value="by gRPC proto compiler", comments="Source: google/devtools/clouddebugger/v2/controller.proto") public final class Controller2Grpc extends Object
The Controller service provides the API for orchestrating a collection of debugger agents to perform debugging tasks. These agents are each attached to a process of an application which may include one or more replicas. The debugger agents register with the Controller to identify the application being debugged, the Debuggee. All agents that register with the same data, represent the same Debuggee, and are assigned the same `debuggee_id`. The debugger agents call the Controller to retrieve the list of active Breakpoints. Agents with the same `debuggee_id` get the same breakpoints list. An agent that can fulfill the breakpoint request updates the Controller with the breakpoint result. The controller selects the first result received and discards the rest of the results. Agents that poll again for active breakpoints will no longer have the completed breakpoint in the list and should remove that breakpoint from their attached process. The Controller service does not provide a way to retrieve the results of a completed breakpoint. This functionality is available using the Debugger service.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
Controller2Grpc.AsyncService
The Controller service provides the API for orchestrating a collection of debugger agents to perform debugging tasks.static class
Controller2Grpc.Controller2BlockingStub
A stub to allow clients to do synchronous rpc calls to service Controller2.static class
Controller2Grpc.Controller2FutureStub
A stub to allow clients to do ListenableFuture-style rpc calls to service Controller2.static class
Controller2Grpc.Controller2ImplBase
Base class for the server implementation of the service Controller2.static class
Controller2Grpc.Controller2Stub
A stub to allow clients to do asynchronous rpc calls to service Controller2.
-
Field Summary
Fields Modifier and Type Field Description static String
SERVICE_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static io.grpc.ServerServiceDefinition
bindService(Controller2Grpc.AsyncService service)
static io.grpc.MethodDescriptor<ListActiveBreakpointsRequest,ListActiveBreakpointsResponse>
getListActiveBreakpointsMethod()
static io.grpc.MethodDescriptor<RegisterDebuggeeRequest,RegisterDebuggeeResponse>
getRegisterDebuggeeMethod()
static io.grpc.ServiceDescriptor
getServiceDescriptor()
static io.grpc.MethodDescriptor<UpdateActiveBreakpointRequest,UpdateActiveBreakpointResponse>
getUpdateActiveBreakpointMethod()
static Controller2Grpc.Controller2BlockingStub
newBlockingStub(io.grpc.Channel channel)
Creates a new blocking-style stub that supports unary and streaming output calls on the servicestatic Controller2Grpc.Controller2FutureStub
newFutureStub(io.grpc.Channel channel)
Creates a new ListenableFuture-style stub that supports unary calls on the servicestatic Controller2Grpc.Controller2Stub
newStub(io.grpc.Channel channel)
Creates a new async stub that supports all call types for the service
-
-
-
Field Detail
-
SERVICE_NAME
public static final String SERVICE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getRegisterDebuggeeMethod
public static io.grpc.MethodDescriptor<RegisterDebuggeeRequest,RegisterDebuggeeResponse> getRegisterDebuggeeMethod()
-
getListActiveBreakpointsMethod
public static io.grpc.MethodDescriptor<ListActiveBreakpointsRequest,ListActiveBreakpointsResponse> getListActiveBreakpointsMethod()
-
getUpdateActiveBreakpointMethod
public static io.grpc.MethodDescriptor<UpdateActiveBreakpointRequest,UpdateActiveBreakpointResponse> getUpdateActiveBreakpointMethod()
-
newStub
public static Controller2Grpc.Controller2Stub newStub(io.grpc.Channel channel)
Creates a new async stub that supports all call types for the service
-
newBlockingStub
public static Controller2Grpc.Controller2BlockingStub newBlockingStub(io.grpc.Channel channel)
Creates a new blocking-style stub that supports unary and streaming output calls on the service
-
newFutureStub
public static Controller2Grpc.Controller2FutureStub newFutureStub(io.grpc.Channel channel)
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
bindService
public static final io.grpc.ServerServiceDefinition bindService(Controller2Grpc.AsyncService service)
-
getServiceDescriptor
public static io.grpc.ServiceDescriptor getServiceDescriptor()
-
-