class WaypointActionListener
interface WaypointActionListener
|
Package: | dji.v5.manager.aircraft.waypoint3 |
Description:
Listener of waypoint action execution.
Supported since MSDK 5.6.0
Class Members:
method onExecutionStart
@Deprecated void onExecutionStart(int actionId)
|
Package: | dji.v5.manager.aircraft.waypoint3 |
Description:
This method will be called back when the waypint action starts to execute.
Supported since MSDK 5.6.0
int actionId | The waypoint action ID to start executing. |
method onExecutionFinish
@Deprecated void onExecutionFinish(int actionId, @Nullable IDJIError error)
|
Package: | dji.v5.manager.aircraft.waypoint3 |
Description:
This method will be called back when the waypoint action finishes executing.
Supported since MSDK 5.6.0
int actionId | The waypoint action ID to end execution. |
@Nullable IDJIError error | The error code for the execution interruption of the waypoint action. |
method onExecutionStart
void onExecutionStart(int actionGroup , int actionId)
|
Package: | dji.v5.manager.aircraft.waypoint3 |
Description:
This method will be called back when the waypint action starts to execute.
Supported since MSDK 5.8.0
int actionGroup | The waypoint action group to start executing. |
int actionId | The waypoint action ID to start executing. |
method onExecutionFinish
void onExecutionFinish(int actionGroup, int actionId, @Nullable IDJIError error)
|
Package: | dji.v5.manager.aircraft.waypoint3 |
Description:
This method will be called back when the waypoint action finishes executing.
Supported since MSDK 5.8.0
int actionGroup | The waypoint action group to start executing. |
int actionId | The waypoint action ID to end execution. |
@Nullable IDJIError error | The error code for the execution interruption of the waypoint action. |