1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ks.push.manager;
|
| import com.ks.push.dto.BPushDeviceDataSet;
| import com.ks.push.pojo.DO.PushPlatform;
| import org.springframework.stereotype.Component;
|
| @Component
| public class CMQManager {
|
|
| /**
| * 添加到推送队列
| *
| * @param platform
| * @param dataSet
| */
| public void addToPushQueue(PushPlatform platform, BPushDeviceDataSet dataSet) {
| //TODO 添加到推送队列
|
| }
|
|
| }
|
|