648540858
2024-03-21 3291c4b2e67d510186ca5fbfac8ec5af1a9d4f16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.genersoft.iot.vmp.service.bean;
 
/**
 * @author lin
 */
 
public class WvpRedisMsgCmd {
 
    /**
     * 请求获取推流信息
     */
    public static final String GET_SEND_ITEM = "GetSendItem";
    /**
     * 请求推流的请求
     */
    public static final String REQUEST_PUSH_STREAM = "RequestPushStream";
    /**
     * 停止推流的请求
     */
    public static final String REQUEST_STOP_PUSH_STREAM = "RequestStopPushStream";
 
}