Class AmqpSession
java.lang.Object
org.apache.activemq.transport.amqp.protocol.AmqpSession
- All Implemented Interfaces:
AmqpResource
Wraps the AMQP Session and provides the services needed to manage the remote
peer requests for link establishment.
-
Constructor Summary
ConstructorsConstructorDescriptionAmqpSession(AmqpConnection connection, org.apache.activemq.command.SessionId sessionId, org.apache.qpid.proton.engine.Session session) Create new AmqpSession instance whose parent is the given AmqpConnection. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Request from the remote peer to close this resource.voidcommit(org.apache.activemq.command.LocalTransactionId txId) Commits all pending work for all resources managed under this session.voidcreateCoordinator(org.apache.qpid.proton.engine.Receiver protonReceiver) voidcreateReceiver(org.apache.qpid.proton.engine.Receiver protonReceiver) voidcreateSender(org.apache.qpid.proton.engine.Sender protonSender) voidenlist(org.apache.activemq.command.TransactionId txId) voidUsed to direct all Session managed Senders to push any queued Messages out to the remote peer.org.apache.qpid.proton.engine.Sessionlongorg.apache.activemq.command.SessionIdvoidopen()Request from the remote peer to open this resource.voidSend all pending work out to the remote peer.voidregisterSender(org.apache.activemq.command.ConsumerId consumerId, AmqpSender sender) voidrollback(org.apache.activemq.command.LocalTransactionId txId) Rolls back any pending work being down under this session.voidunregisterSender(org.apache.activemq.command.ConsumerId consumerId)
-
Constructor Details
-
AmqpSession
public AmqpSession(AmqpConnection connection, org.apache.activemq.command.SessionId sessionId, org.apache.qpid.proton.engine.Session session) Create new AmqpSession instance whose parent is the given AmqpConnection.- Parameters:
connection- the parent connection for this session.sessionId- the ActiveMQ SessionId that is used to identify this session.session- the AMQP Session that this class manages.
-
-
Method Details
-
open
public void open()Description copied from interface:AmqpResourceRequest from the remote peer to open this resource.- Specified by:
openin interfaceAmqpResource
-
close
public void close()Description copied from interface:AmqpResourceRequest from the remote peer to close this resource.- Specified by:
closein interfaceAmqpResource
-
commit
Commits all pending work for all resources managed under this session.- Parameters:
txId- The specific TransactionId that is being committed.- Throws:
Exception- if an error occurs while attempting to commit work.
-
rollback
Rolls back any pending work being down under this session.- Parameters:
txId- The specific TransactionId that is being rolled back.- Throws:
Exception- if an error occurs while attempting to roll back work.
-
flushPendingMessages
Used to direct all Session managed Senders to push any queued Messages out to the remote peer.- Throws:
Exception- if an error occurs while flushing the messages.
-
createCoordinator
public void createCoordinator(org.apache.qpid.proton.engine.Receiver protonReceiver) throws Exception - Throws:
Exception
-
createReceiver
- Throws:
Exception
-
createSender
- Throws:
Exception
-
pumpProtonToSocket
public void pumpProtonToSocket()Send all pending work out to the remote peer. -
registerSender
-
unregisterSender
public void unregisterSender(org.apache.activemq.command.ConsumerId consumerId) -
enlist
public void enlist(org.apache.activemq.command.TransactionId txId) -
getConnection
-
getSessionId
public org.apache.activemq.command.SessionId getSessionId() -
getEndpoint
public org.apache.qpid.proton.engine.Session getEndpoint() -
getMaxFrameSize
public long getMaxFrameSize()
-