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

com.blade.mvc.websocket.WebSocketSession Maven / Gradle / Ivy

There is a newer version: 2.0.15.RELEASE
Show newest version
package com.blade.mvc.websocket;

import com.blade.kit.UUID;
import io.netty.channel.Channel;
import lombok.Data;

/**
 * @author biezhi
 * @date 2017/10/30
 */
@Data
public class WebSocketSession {

    private Channel channel;
    private String uuid;

    public WebSocketSession(Channel channel) {
        this.channel = channel;
        this.uuid = UUID.UU32();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy