
com.openthinks.libs.utilities.websocket.support.IEndPointSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities Show documentation
Show all versions of utilities Show documentation
A common utilities for other projects under domain com.openthinks.
The newest version!
package com.openthinks.libs.utilities.websocket.support;
/**
*
* ClassName: IEndPointSession
* Function: TODO FUNCTION description of this class.
* Reason: TODO why you add this class?(Optional).
* date: Jul 26, 2017 4:22:29 PM
*
* @author [email protected]
* @since JDK 1.8
*/
public interface IEndPointSession {
/**
* return current session is connected or not
* @return true or false
*/
public boolean isOpen();
/**
* get session id
* @return String session id
*/
public String getId();
/**
* get session group name
* @return String session group
*/
public String getGroup();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy