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

com.github.unclecatmyself.common.websockets.WebSocketHandlerApi Maven / Gradle / Ivy

package com.github.unclecatmyself.common.websockets;

import io.netty.channel.Channel;
import io.netty.handler.timeout.IdleStateEvent;

import java.util.Map;

/**
 * Create by UncleCatMySelf in 2018/12/06
 */
public interface WebSocketHandlerApi {

    void close(Channel channel);

    void sendMeText(Channel channel, Map maps);

    void sendToText(Channel channel, Map maps);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy