Uses of Interface
com.tangosol.net.Session
Package
Description
Coherence CDI provides support for CDI (Contexts and Dependency Injection)
within Coherence cluster members.
Coherence Concurrent utilities based on java.util.concurrent.
Interfaces and classes providing a framework for locking and waiting for conditions that is distinct from built-in synchronization and monitors.
Contains packages and classes supporting the Coherence CohQL command line tool.
Contains classes related to the Coherence REST API.
Contains basic cluster interfaces and factories.
Contains classes related to the Coherence Live Event Model.
Contains various generic utilities.
-
Uses of Session in com.oracle.coherence.cdi
Modifier and TypeMethodDescriptionSessionProducer.getDefaultSession
(jakarta.enterprise.inject.spi.InjectionPoint injectionPoint) Produces the defaultSession
.protected Session
AbstractCacheInterceptor.getSession
(String sName) Obtains the namedSession
or the default one if session name was not specified.SessionProducer.getSessionWithName
(jakarta.enterprise.inject.spi.InjectionPoint injectionPoint) Produces aSession
for a given scope.SessionProducer.getSessionWithSessionName
(jakarta.enterprise.inject.spi.InjectionPoint injectionPoint) Produces aSession
for a given scope. -
Uses of Session in com.oracle.coherence.concurrent
-
Uses of Session in com.oracle.coherence.concurrent.locks
-
Uses of Session in com.tangosol.coherence.dslquery
Modifier and TypeFieldDescriptionprotected Session
ExecutionContext.m_session
TheSession
to use for cache access.Modifier and TypeMethodDescriptionExecutionContext.getSession()
Return the currentSession
that will be used by commands executed under this context.Modifier and TypeMethodDescriptionvoid
ExecutionContext.setSession
(Session session) Set theSession
that will be used by commands executed under this context. -
Uses of Session in com.tangosol.coherence.rest
-
Uses of Session in com.tangosol.net
Modifier and TypeClassDescriptionclass
An implementation of aSession
allowing applications to use the new operator to create aSession
via the defaultSessionProvider
.Modifier and TypeFieldDescriptionprotected Session
CoherenceSession.m_session
The underlyingSession
to which this implementation will delegate requests.Modifier and TypeMethodDescriptionstatic Session
Session.create()
Obtain the default Session.static Session
Session.create
(Session.Option... options) Deprecated.default Session
SessionProvider.createSession
(Session.Option... options) Deprecated.static Session
Session.ensure
(SessionConfiguration configuration) Obtain aSession
based on the specified configuration or throw anIllegalStateException
if a session could not be obtained.static Session
Session.ensure
(SessionConfiguration configuration, Coherence.Mode mode) Obtain aSession
based on the specified configuration or throw anIllegalStateException
if a session could not be obtained.Coherence.getSession()
Coherence.getSession
(String sName) SessionProvider.Context.getSession()
Return theSession
created by the provider, ornull
if no session could be created.SessionProvider.DefaultContext.getSession()
Modifier and TypeMethodDescriptionSession.create
(SessionConfiguration configuration) Possibly obtain aSession
based on the specified configuration.Session.create
(SessionConfiguration configuration, Coherence.Mode mode) Possibly obtain aSession
based on the specified configuration.Session.create
(SessionConfiguration configuration, Coherence.Mode mode, Iterable<? extends EventInterceptor<?>> interceptors) Possibly obtain aSession
based on the specified configuration.SessionProvider.createSession
(SessionConfiguration configuration, Coherence.Mode mode) Create aSession
from the specified configuration.SessionProvider.createSession
(SessionConfiguration configuration, Coherence.Mode defaultMode, Iterable<? extends EventInterceptor<?>> interceptors) Create aSession
from the specified configuration.SessionProvider.createSession
(SessionConfiguration configuration, Coherence.Mode defaultMode, String sScopePrefix, Iterable<? extends EventInterceptor<?>> interceptors) Create aSession
from the specified configuration.Coherence.findSession
(String sName) static Collection
<Session> Coherence.findSessionsByScope
(String sScope) Coherence.getSessionIfPresent
(String sName) Coherence.getSessionsWithScope
(String sScope) Modifier and TypeMethodDescriptionComplete this context.default void
CacheFactoryBuilder.releaseSession
(Session session) default void
SessionProvider.releaseSession
(Session session) Release theSession
. -
Uses of Session in com.tangosol.net.events
Modifier and TypeMethodDescriptionSessionLifecycleEvent.getSession()
TheSession
instance that this event is associated with. -
Uses of Session in com.tangosol.util
Modifier and TypeMethodDescriptionstatic ExecutionContext
QueryHelper.createExecutionContext
(Session session) Create a newExecutionContext
.
create(SessionConfiguration)