Click or drag to resize

ISessionModelManager Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Defines the methods that model managers have to implement.

Namespace:  Tangosol.Web
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface ISessionModelManager

The ISessionModelManager type exposes the following members.

Properties
  NameDescription
Public propertySessionEndCallback
The SessionStateItemExpireCallback delegate for the Session_OnEnd event as defined in the Global.asax file.
Top
Methods
  NameDescription
Public methodCreateSessionModel
Create a new instance of an appropriate ISessionModel for this model manager.
Public methodLoadSession
Load session from the cache.
Public methodReleaseSession
Releases a lock on the session in a data store.
Public methodRemoveSession
Delete session from the cache.
Public methodResetSessionTimeout
Reset session timeout.
Public methodSaveSession
Update session items in the cache and release the exclusive lock.
Top
Remarks
Model manager is responsible for model serialization and deserialization. Session provider simply delegates all the calls to a configured instance of model manager.
See Also