package com.highdatas.mdm.service; import com.highdatas.mdm.entity.SysDispenseLogs; import com.highdatas.mdm.pojo.Result; import com.highdatas.mdm.util.pool.MqMessage; import org.springframework.stereotype.Service; /** * @author kimi * @description * @date 2020-04-14 12:53 */ @Service public interface DispenseService { Boolean getAes(); String getAesUrl(); boolean pushActiveMq(MqMessage message); boolean pushActiveMq(MqMessage message, String touchType); Result pushPassiveMq(MqMessage message, String touchType, SysDispenseLogs logs); Integer passiveQueueSize(); Integer avtiveQueueSize(); }