Uses of Interface
org.apache.qpid.protonj2.client.Session
-
Packages that use Session Package Description org.apache.qpid.protonj2.client org.apache.qpid.protonj2.client.impl -
-
Uses of Session in org.apache.qpid.protonj2.client
Methods in org.apache.qpid.protonj2.client that return Session Modifier and Type Method Description Session
Session. beginTransaction()
Opens a new transaction scoped to thisSession
if one is not already active.Session
Session. commitTransaction()
Commit the currently active transaction in this Session.Session
Connection. defaultSession()
Session
Connection. openSession()
Creates a newSession
instance for use by the client application.Session
Connection. openSession(SessionOptions options)
Creates a newSession
instance for use by the client application.Session
Session. rollbackTransaction()
Roll back the currently active transaction in this Session.Session
Link. session()
Methods in org.apache.qpid.protonj2.client that return types with arguments of type Session Modifier and Type Method Description Future<Session>
Session. closeAsync()
Future<Session>
Session. closeAsync(ErrorCondition error)
Future<Session>
Session. openFuture()
-
Uses of Session in org.apache.qpid.protonj2.client.impl
Classes in org.apache.qpid.protonj2.client.impl that implement Session Modifier and Type Class Description class
ClientSession
Client implementation of the Session API.class
ClientStreamSession
A specializedClientSession
that is the parent of aClientStreamSender
orClientStreamReceiver
and cannot create any further resources as the lifetime of the session is tied to the childStreamSender
orStreamReceiver
.Methods in org.apache.qpid.protonj2.client.impl that return Session Modifier and Type Method Description Session
ClientSession. beginTransaction()
Session
ClientSession. commitTransaction()
Session
ClientConnection. defaultSession()
Session
ClientConnection. openSession()
Session
ClientConnection. openSession(SessionOptions sessionOptions)
Session
ClientSession. rollbackTransaction()
Methods in org.apache.qpid.protonj2.client.impl that return types with arguments of type Session Modifier and Type Method Description Future<Session>
ClientSession. closeAsync()
Future<Session>
ClientSession. closeAsync(ErrorCondition error)
Future<Session>
ClientSession. openFuture()
-