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

com.feingto.iot.common.model.custom.MessageChannel Maven / Gradle / Ivy

There is a newer version: 2.3.3.RELEASE
Show newest version
package com.feingto.iot.common.model.custom;

import io.netty.channel.Channel;
import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * 消息通道封装
 *
 * @author longfei
 */
@Data
@Accessors(fluent = true)
public class MessageChannel implements Serializable {
    private static final long serialVersionUID = -379518677104044700L;
    private transient volatile Channel channel;

    private String username;

    /**
     * 设备标识, 例如ios的device token
     */
    private String deviceId;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy