ISessionsController class abstract

Implementers

Constructors

ISessionsController()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

closeExpiredSessions(String? correlationId) Future
Close an expired sessions.
closeSession(String? correlationId, String sessionId) Future<SessionV1?>
Close a session by it's id.
deleteSessionById(String? correlationId, String sessionId) Future<SessionV1?>
Deleted an session by it's unique id.
getSessionById(String? correlationId, String sessionId) Future<SessionV1?>
Gets an session by its unique id.
getSessions(String? correlationId, FilterParams filter, PagingParams paging) Future<DataPage<SessionV1>>
Gets a page of sessions retrieved by a given filter.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
openSession(String? correlationId, String? user_id, String? user_name, String? address, String? client, dynamic user, dynamic data) Future<SessionV1?>
Creates a new session.
storeSessionData(String? correlationId, String sessionId, dynamic data) Future<SessionV1?>
Updates a session's data.
toString() String
A string representation of this object.
inherited
updateSessionUser(String? correlationId, String sessionId, dynamic user) Future<SessionV1?>
Updates a session's user.

Operators

operator ==(Object other) bool
The equality operator.
inherited