Uses of Interface
com.tangosol.net.Session
-
Packages that use Session Package Description com.oracle.coherence.cdi Coherence CDI provides support for CDI (Contexts and Dependency Injection) within Coherence cluster members.com.oracle.coherence.concurrent Coherence Concurrent utilities based on java.util.concurrent.com.oracle.coherence.concurrent.locks Interfaces and classes providing a framework for locking and waiting for conditions that is distinct from built-in synchronization and monitors.com.tangosol.coherence.dslquery Contains packages and classes supporting the Coherence CohQL command line tool.com.tangosol.coherence.rest Contains classes related to the Coherence REST API.com.tangosol.net Contains basic cluster interfaces and factories.com.tangosol.net.events Contains classes related to the Coherence Live Event Model.com.tangosol.util Contains various generic utilities. -
-
Uses of Session in com.oracle.coherence.cdi
Methods in com.oracle.coherence.cdi that return Session Modifier and Type Method Description Session
SessionProducer. getDefaultSession(javax.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.Session
SessionProducer. getSessionWithName(javax.enterprise.inject.spi.InjectionPoint injectionPoint)
Produces aSession
for a given scope.Session
SessionProducer. getSessionWithSessionName(javax.enterprise.inject.spi.InjectionPoint injectionPoint)
Produces aSession
for a given scope. -
Uses of Session in com.oracle.coherence.concurrent
Methods in com.oracle.coherence.concurrent that return Session Modifier and Type Method Description protected static Session
Latches. session()
Return CoherenceSession
for the Latches module.protected static Session
Semaphores. session()
Return CoherenceSession
for the Semaphore module. -
Uses of Session in com.oracle.coherence.concurrent.locks
Methods in com.oracle.coherence.concurrent.locks that return Session Modifier and Type Method Description protected static Session
Locks. session()
Return CoherenceSession
for the Locks module. -
Uses of Session in com.tangosol.coherence.dslquery
Fields in com.tangosol.coherence.dslquery declared as Session Modifier and Type Field Description protected Session
ExecutionContext. m_session
TheSession
to use for cache access.Methods in com.tangosol.coherence.dslquery that return Session Modifier and Type Method Description Session
ExecutionContext. getSession()
Return the currentSession
that will be used by commands executed under this context.Methods in com.tangosol.coherence.dslquery with parameters of type Session Modifier and Type Method Description void
ExecutionContext. setSession(Session session)
Set theSession
that will be used by commands executed under this context. -
Uses of Session in com.tangosol.coherence.rest
Fields in com.tangosol.coherence.rest declared as Session Modifier and Type Field Description protected Session
DefaultRootResource. m_session
Coherence session. -
Uses of Session in com.tangosol.net
Classes in com.tangosol.net that implement Session Modifier and Type Class Description class
CoherenceSession
An implementation of aSession
allowing applications to use the new operator to create aSession
via the defaultSessionProvider
.Fields in com.tangosol.net declared as Session Modifier and Type Field Description protected Session
CoherenceSession. m_session
The underlyingSession
to which this implementation will delegate requests.Methods in com.tangosol.net that return Session Modifier and Type Method Description static Session
Session. create()
Obtain the default Session.static Session
Session. create(Session.Option... options)
Deprecated.since 20.12 usecreate(SessionConfiguration)
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.Session
Coherence. getSession()
Session
Coherence. getSession(String sName)
Session
SessionProvider.Context. getSession()
Return theSession
created by the provider, ornull
if no session could be created.Session
SessionProvider.DefaultContext. getSession()
Methods in com.tangosol.net that return types with arguments of type Session Modifier and Type Method Description static Optional<Session>
Session. create(SessionConfiguration configuration)
Possibly obtain aSession
based on the specified configuration.static Optional<Session>
Session. create(SessionConfiguration configuration, Coherence.Mode mode)
Possibly obtain aSession
based on the specified configuration.static Optional<Session>
Session. create(SessionConfiguration configuration, Coherence.Mode mode, Iterable<? extends EventInterceptor<?>> interceptors)
Possibly obtain aSession
based on the specified configuration.default Optional<Session>
SessionProvider. createSession(SessionConfiguration configuration, Coherence.Mode mode)
Create aSession
from the specified configuration.default Optional<Session>
SessionProvider. createSession(SessionConfiguration configuration, Coherence.Mode defaultMode, Iterable<? extends EventInterceptor<?>> interceptors)
Create aSession
from the specified configuration.default Optional<Session>
SessionProvider. createSession(SessionConfiguration configuration, Coherence.Mode defaultMode, String sScopePrefix, Iterable<? extends EventInterceptor<?>> interceptors)
Create aSession
from the specified configuration.static Optional<Session>
Coherence. findSession(String sName)
static Collection<Session>
Coherence. findSessionsByScope(String sScope)
Optional<Session>
Coherence. getSessionIfPresent(String sName)
Collection<Session>
Coherence. getSessionsWithScope(String sScope)
Methods in com.tangosol.net with parameters of type Session Modifier and Type Method Description SessionProvider.Context
SessionProvider.Context. complete(Session session)
Complete this context.SessionProvider.Context
SessionProvider.DefaultContext. complete(Session session)
default void
CacheFactoryBuilder. releaseSession(Session session)
default void
SessionProvider. releaseSession(Session session)
Release theSession
. -
Uses of Session in com.tangosol.net.events
Methods in com.tangosol.net.events that return Session Modifier and Type Method Description Session
SessionLifecycleEvent. getSession()
TheSession
instance that this event is associated with. -
Uses of Session in com.tangosol.util
Methods in com.tangosol.util with parameters of type Session Modifier and Type Method Description static ExecutionContext
QueryHelper. createExecutionContext(Session session)
Create a newExecutionContext
.
-