SessionTrackerByValue
class SessionTrackerByValue<S : Any>(type: KClass<S>, serializer: SessionSerializer<S>) : SessionTracker<S>
Content copied to clipboard
SessionTracker that stores the contents of the session as part of HTTP Cookies/Headers. It uses a specific serializer to serialize and deserialize objects of type type.
Constructors
Link copied to clipboard
fun <S : Any> SessionTrackerByValue(type: KClass<S>, serializer: SessionSerializer<S>)
Content copied to clipboard