648540858
2022-01-13 cf23816c80771c9e22bb50d0d89feb34d2edca79
src/main/java/com/genersoft/iot/vmp/utils/redis/RedisUtil.java
@@ -3,6 +3,7 @@
import java.util.*;
import java.util.concurrent.TimeUnit;
import com.alibaba.fastjson.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.*;
import org.springframework.stereotype.Component;
@@ -729,4 +730,11 @@
        return new ArrayList<>(keys);
    }
    //    ============================== 消息发送与订阅 ==============================
    public void convertAndSend(String channel, JSONObject msg) {
//        redisTemplate.convertAndSend(channel, msg);
        redisTemplate.convertAndSend(channel, msg);
    }
}