package com.zy.integration.iot.biz;
|
|
import com.zy.asrs.entity.WrkMast;
|
import com.zy.iot.entity.IotFeedbackMessage;
|
import com.zy.iot.entity.IotInstructionMessage;
|
|
public interface IotInstructionService {
|
|
Long handleStowInstruction(IotInstructionMessage message, String topic, String rawPayload);
|
|
Long handlePickInstruction(IotInstructionMessage message, String topic, String rawPayload);
|
|
void handleFeedbackAck(IotFeedbackMessage feedbackMessage, String topic, String rawPayload);
|
|
void queueWorkCompletion(WrkMast wrkMast);
|
}
|