public class SoftwareVersionManager extends BasicModule implements SessionEventListener
| Constructor and Description |
|---|
SoftwareVersionManager() |
| Modifier and Type | Method and Description |
|---|---|
void |
anonymousSessionCreated(Session session)
Notification event indicating that an anonymous user has authenticated with the server.
|
void |
anonymousSessionDestroyed(Session session)
An authenticated session of an anonymous user was destroyed.
|
void |
resourceBound(Session session)
A session has finished resource binding.
|
void |
sessionCreated(Session session)
Notification event indicating that a user has authenticated with the server.
|
void |
sessionDestroyed(Session session)
An authenticated session of a non anonymous user was destroyed.
|
void |
start()
Starts the basic module.
|
void |
stop()
Stops the basic module.
|
destroy, getName, initializepublic void start()
throws IllegalStateException
BasicModuleStarts the basic module.
Inheriting classes that choose to override this method MUST call this start() method before accessing BasicModule resources.
start in interface Modulestart in class BasicModuleIllegalStateException - If start is called before initialize
successfully returnspublic void stop()
BasicModuleStops the basic module.
Inheriting classes that choose to override this method MUST call this stop() method before accessing BasicModule resources.
stop in interface Modulestop in class BasicModulepublic void sessionCreated(Session session)
SessionEventListenersessionCreated in interface SessionEventListenersession - the authenticated session of a non anonymous user.public void sessionDestroyed(Session session)
SessionEventListenersessionDestroyed in interface SessionEventListenersession - the authenticated session of a non anonymous user.public void anonymousSessionCreated(Session session)
SessionEventListeneranonymousSessionCreated in interface SessionEventListenersession - the authenticated session of an anonymous user.public void anonymousSessionDestroyed(Session session)
SessionEventListeneranonymousSessionDestroyed in interface SessionEventListenersession - the authenticated session of an anonymous user.public void resourceBound(Session session)
SessionEventListenerresourceBound in interface SessionEventListenersession - the session on which resource binding was performed.Copyright © 2003–2019 Ignite Realtime. All rights reserved.