org.frameworkset.web.socket.endpoint.NativeWebSocketSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-websocket Show documentation
Show all versions of bboss-websocket Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
package org.frameworkset.web.socket.endpoint;
import org.frameworkset.web.socket.inf.WebSocketSession;
public interface NativeWebSocketSession extends WebSocketSession {
/**
* Return the underlying native WebSocketSession, if available.
* @return the native session or {@code null}
*/
Object getNativeSession();
/**
* Return the underlying native WebSocketSession, if available.
* @param requiredType the required type of the session
* @return the native session of the required type or {@code null}
*/
T getNativeSession(Class requiredType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy