thingsboard-client-demo/src/main/java/com/tuoheng/machine/action/drone/EmergencyStopAction.java

11 lines
388 B
Java
Raw Normal View History

package com.tuoheng.machine.action.drone;
import com.tuoheng.machine.events.DroneEvent;
import com.tuoheng.machine.platform.strategy.PlatformAction;
import com.tuoheng.machine.status.DroneState;
/**
* Base action for drone emergency stop handling; platform implementations extend this.
*/
public abstract class EmergencyStopAction implements PlatformAction<DroneState, DroneEvent> {
}