Package com.viam.service.motion.v1
Class MotionServiceGrpc.MotionServiceBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<S>
io.grpc.stub.AbstractBlockingStub<MotionServiceGrpc.MotionServiceBlockingStub>
com.viam.service.motion.v1.MotionServiceGrpc.MotionServiceBlockingStub
- Enclosing class:
- MotionServiceGrpc
public static final class MotionServiceGrpc.MotionServiceBlockingStub
extends io.grpc.stub.AbstractBlockingStub<MotionServiceGrpc.MotionServiceBlockingStub>
A stub to allow clients to do synchronous rpc calls to service MotionService.
A MotionService declares the gRPC contract for a motion service
-
Nested Class Summary
Nested classes/interfaces inherited from class io.grpc.stub.AbstractStub
io.grpc.stub.AbstractStub.StubFactory<T extends io.grpc.stub.AbstractStub<T>>
-
Method Summary
Modifier and TypeMethodDescriptionbuild
(io.grpc.Channel channel, io.grpc.CallOptions callOptions) doCommand
(Common.DoCommandRequest request) DoCommand sends/receives arbitrary commandsgetPlan
(Motion.GetPlanRequest request) Returns the plan(s) & state history of the most recent execution to move a component.getPose
(Motion.GetPoseRequest request) Returns the status of plans created by requests to move components that are executing OR are part of an execution which changed it state within the a 24HR TTL OR until the robot reinitializes.move
(Motion.MoveRequest request) moveOnGlobe
(Motion.MoveOnGlobeRequest request) Generate and begin executing an execution to move a component to a specific GPS coordinate.moveOnMap
(Motion.MoveOnMapRequest request) Generate a plan and move a component to a specific pose with respect to the SLAM map's origin.stopPlan
(Motion.StopPlanRequest request) Stops a PlanMethods inherited from class io.grpc.stub.AbstractBlockingStub
newStub, newStub
Methods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOnReadyThreshold, withOption, withWaitForReady
-
Method Details
-
build
protected MotionServiceGrpc.MotionServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
build
in classio.grpc.stub.AbstractStub<MotionServiceGrpc.MotionServiceBlockingStub>
-
move
-
moveOnMap
Generate a plan and move a component to a specific pose with respect to the SLAM map's origin. May replan to avoid obstacles
-
moveOnGlobe
Generate and begin executing an execution to move a component to a specific GPS coordinate. May replan to avoid obstacles & account for location drift. Creates a new plan upon replanning.
-
getPose
-
stopPlan
Stops a Plan
-
listPlanStatuses
Returns the status of plans created by requests to move components that are executing OR are part of an execution which changed it state within the a 24HR TTL OR until the robot reinitializes. This currently only returns plans for MoveOnGlobe and MoveOnMap.
-
getPlan
Returns the plan(s) & state history of the most recent execution to move a component. Returns a result if the last execution is still executing OR changed state within the last 24 hours AND the robot has not reinitialized. Plans are never mutated. Replans always create new plans. Replans share the execution_id of the previously executing plan. This currently only returns plans for MoveOnGlobe and MoveOnMap.
-
doCommand
DoCommand sends/receives arbitrary commands
-