kimi
2020-05-18 c8aee7b9bfd79cfd741d7e5692520f4f51a31a86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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();
}