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

com.blade.mvc.handler.WebSocketHandler Maven / Gradle / Ivy

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

import com.blade.mvc.websocket.WebSocketContext;

/**
 * @author biezhi
 * @date 2017/10/30
 */
public interface WebSocketHandler {

    void onConnect(WebSocketContext ctx);

    void onText(WebSocketContext ctx);

    void onDisConnect(WebSocketContext ctx);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy