class SessionProvider<S : Any>
Specifies a provider for a session with the specific name and type
transport
- specifies the SessionTransport for this provider
tracker
- specifies the SessionTracker for this provider
SessionProvider(name: String, type: KClass<S>, transport: SessionTransport, tracker: SessionTracker<S>)
Specifies a provider for a session with the specific name and type |
val name: String
session name |
|
val tracker: SessionTracker<S>
specifies the SessionTracker for this provider |
|
val transport: SessionTransport
specifies the SessionTransport for this provider |
|
val type: KClass<S>
session instance type |
fun toString(): String |