DJI Mobile SDK Documentation

      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

      Input Parameters:
      int actionIdThe 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

      Input Parameters:
      int actionIdThe waypoint action ID to end execution.
      @Nullable IDJIError errorThe 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

      Input Parameters:
      int actionGroupThe waypoint action group to start executing.
      int actionIdThe 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

      Input Parameters:
      int actionGroupThe waypoint action group to start executing.
      int actionIdThe waypoint action ID to end execution.
      @Nullable IDJIError errorThe error code for the execution interruption of the waypoint action.