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

org.frameworkset.web.socket.endpoint.NativeWebSocketSession Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

There is a newer version: 6.2.7
Show newest version
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