All Downloads are FREE. Search and download functionalities are using the official Maven repository.

wang.moshu.message.MessageMonitor Maven / Gradle / Ivy

package wang.moshu.message;/**
 * Created by dingxiangyong on 2017/3/12.
 */

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * 消息监听器
 * @auth xiangyong.ding
 * 2017/3/12 21:28
 **/
@Service
public class MessageMonitor {
    @Autowired
    private RedisUtil redisUtil;

    /**
     * 获取待处理消息个数
     * @param messageType
     * @return
     */
    public int getMessageLeft(String messageType){
        return redisUtil.llen(messageType).intValue();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy