Package com.flowable.platform.websocket
Class NoOpUserSessionService
java.lang.Object
com.flowable.platform.websocket.NoOpUserSessionService
- All Implemented Interfaces:
UserSessionService
public class NoOpUserSessionService extends java.lang.Object implements UserSessionService
- Author:
- Filip Hrisafov
-
Constructor Summary
Constructors Constructor Description NoOpUserSessionService()
-
Method Summary
Modifier and Type Method Description void
userConnected(java.lang.String userId, java.lang.String tenantId, java.lang.String sessionId)
Method invoked when the user has been connected in real time to the applicationvoid
userDisconnected(java.lang.String userId, java.lang.String tenantId, java.lang.String sessionId)
Method invoked when the user has been disconnected from a single session the application
-
Constructor Details
-
NoOpUserSessionService
public NoOpUserSessionService()
-
-
Method Details
-
userConnected
public void userConnected(java.lang.String userId, java.lang.String tenantId, java.lang.String sessionId)Description copied from interface:UserSessionService
Method invoked when the user has been connected in real time to the application- Specified by:
userConnected
in interfaceUserSessionService
- Parameters:
userId
- the id of the user that has connectedtenantId
- the tenant id for the connectionsessionId
- the id of the session that the user is connected to
-
userDisconnected
public void userDisconnected(java.lang.String userId, java.lang.String tenantId, java.lang.String sessionId)Description copied from interface:UserSessionService
Method invoked when the user has been disconnected from a single session the application- Specified by:
userDisconnected
in interfaceUserSessionService
- Parameters:
userId
- the id of the user that has been disconnectedtenantId
- the tenant id for the connectionsessionId
- the session id that the user disconnected from
-