package com.zy.asrs.wcs.rcs.thread; import com.zy.asrs.wcs.rcs.model.command.LedCommand; import java.util.List; public interface LedThread extends ThreadHandler{ void write(List commands); void reset(); void error(String error); void errorReset(); void setLedMk(boolean mk); boolean isLedMk(); }