public abstract class RobotMovementCallback extends Object
Constructor and Description |
---|
RobotMovementCallback() |
Modifier and Type | Method and Description |
---|---|
void |
onCancel(MovementCancelEvent event)
This method is called if the user cancels the move request (before reaching the target position).
Overriding this method is optional. |
abstract void |
onComplete(MovementCompleteEvent event)
This method is called when the robot has been moved to the desired target position by the user.
This method must be overridden. |
void |
onError(MovementErrorEvent event)
This method is called when an error occurs in the move request.
|
public abstract void onComplete(MovementCompleteEvent event)
event
- This object holds information related to the onComplete event.public void onCancel(MovementCancelEvent event)
event
- This object holds information related to the onCancel event.public void onError(MovementErrorEvent event)
event
- This object holds information related to the onError event.Copyright © 2019. All rights reserved.