interface SimpUser
Represents a connected user.
Author
Rossen Stoyanchev
Since
4.2
abstract fun getName(): String
The unique user name. |
|
abstract fun getSession(sessionId: String): SimpSession
Look up the session for the given id. |
|
abstract fun getSessions(): MutableSet<SimpSession>
Return the sessions for the user. The returned set is a copy and will never be modified. |
|
abstract fun hasSessions(): Boolean
Whether the user has any sessions. |