Class DriveMotionRequest

    • Constructor Detail

    • Method Detail

      • execute

         final Unit execute(Callback<RESP> callback)

        Execute a sync call.

        Parameters:
        callback - Customized callback function
      • syncCall

        @Deprecated(message = "Using execute() to process request.", replaceWith = @ReplaceWith(imports = {}, expression = "call.execute(callback)")) final Unit syncCall(Callback<RESP> callback)

        Execute the call synchronously.

        Parameters:
        callback - Customized callback function
      • asyncCall

        @Deprecated(message = "Using execute() to process request.", replaceWith = @ReplaceWith(imports = {}, expression = "call.execute(callback)")) final Unit asyncCall(Callback<RESP> callback)

        Execute the call asynchronously.

        Parameters:
        callback - Customized callback function