Interface SessionCallback
-
public interface SessionCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidafterDelivery()This can be used to complete certain operations outside of the lock, like acks or other operations.voidbrowserFinished(org.apache.activemq.artemis.core.server.ServerConsumer consumer)Some protocols (Openwire) needs a special message with the browser is finished.default voidclose(boolean failed)voidclosed()voiddisconnect(org.apache.activemq.artemis.core.server.ServerConsumer consumerId, org.apache.activemq.artemis.api.core.SimpleString queueName)default org.apache.activemq.artemis.core.transaction.TransactiongetCurrentTransaction()booleanhasCredits(org.apache.activemq.artemis.core.server.ServerConsumer consumerID)This one gives a chance for Proton to have its own flow control.default booleanhasCredits(org.apache.activemq.artemis.core.server.ServerConsumer consumerID, org.apache.activemq.artemis.core.server.MessageReference ref)This one includes the MessageReference for protocols like MQTT 5 (which only enforces flow control on durable messages (i.e.booleanisWritable(ReadyListener callback, java.lang.Object protocolContext)intsendLargeMessage(org.apache.activemq.artemis.core.server.MessageReference reference, Message message, org.apache.activemq.artemis.core.server.ServerConsumer consumerID, long bodySize, int deliveryCount)intsendLargeMessageContinuation(org.apache.activemq.artemis.core.server.ServerConsumer consumerID, byte[] body, boolean continues, boolean requiresResponse)intsendMessage(org.apache.activemq.artemis.core.server.MessageReference ref, Message message, org.apache.activemq.artemis.core.server.ServerConsumer consumerID, int deliveryCount)voidsendProducerCreditsFailMessage(int credits, org.apache.activemq.artemis.api.core.SimpleString address)voidsendProducerCreditsMessage(int credits, org.apache.activemq.artemis.api.core.SimpleString address)default booleansupportsDirectDelivery()A requirement to do direct delivery is: no extra locking required at the protocol layer.booleanupdateDeliveryCountAfterCancel(org.apache.activemq.artemis.core.server.ServerConsumer consumer, org.apache.activemq.artemis.core.server.MessageReference ref, boolean failed)Use this to updates specifics on the message after a redelivery happened.
-
-
-
Method Detail
-
supportsDirectDelivery
default boolean supportsDirectDelivery()
A requirement to do direct delivery is: no extra locking required at the protocol layer. which cannot be guaranteed at AMQP as proton will need the locking. So, disable this on AMQP or any other protocol requiring extra lock.- Returns:
-
hasCredits
boolean hasCredits(org.apache.activemq.artemis.core.server.ServerConsumer consumerID)
This one gives a chance for Proton to have its own flow control.
-
hasCredits
default boolean hasCredits(org.apache.activemq.artemis.core.server.ServerConsumer consumerID, org.apache.activemq.artemis.core.server.MessageReference ref)This one includes the MessageReference for protocols like MQTT 5 (which only enforces flow control on durable messages (i.e. QoS 1 & 2))
-
afterDelivery
void afterDelivery() throws java.lang.ExceptionThis can be used to complete certain operations outside of the lock, like acks or other operations.- Throws:
java.lang.Exception
-
updateDeliveryCountAfterCancel
boolean updateDeliveryCountAfterCancel(org.apache.activemq.artemis.core.server.ServerConsumer consumer, org.apache.activemq.artemis.core.server.MessageReference ref, boolean failed)Use this to updates specifics on the message after a redelivery happened. Return true if there was specific logic applied on the protocol, so the ServerConsumer won't make any adjustments.- Parameters:
consumer-ref-failed-
-
sendProducerCreditsMessage
void sendProducerCreditsMessage(int credits, org.apache.activemq.artemis.api.core.SimpleString address)
-
sendProducerCreditsFailMessage
void sendProducerCreditsFailMessage(int credits, org.apache.activemq.artemis.api.core.SimpleString address)
-
sendMessage
int sendMessage(org.apache.activemq.artemis.core.server.MessageReference ref, Message message, org.apache.activemq.artemis.core.server.ServerConsumer consumerID, int deliveryCount)
-
sendLargeMessage
int sendLargeMessage(org.apache.activemq.artemis.core.server.MessageReference reference, Message message, org.apache.activemq.artemis.core.server.ServerConsumer consumerID, long bodySize, int deliveryCount)
-
sendLargeMessageContinuation
int sendLargeMessageContinuation(org.apache.activemq.artemis.core.server.ServerConsumer consumerID, byte[] body, boolean continues, boolean requiresResponse)
-
closed
void closed()
-
disconnect
void disconnect(org.apache.activemq.artemis.core.server.ServerConsumer consumerId, org.apache.activemq.artemis.api.core.SimpleString queueName)
-
isWritable
boolean isWritable(ReadyListener callback, java.lang.Object protocolContext)
-
browserFinished
void browserFinished(org.apache.activemq.artemis.core.server.ServerConsumer consumer)
Some protocols (Openwire) needs a special message with the browser is finished.
-
close
default void close(boolean failed)
-
getCurrentTransaction
default org.apache.activemq.artemis.core.transaction.Transaction getCurrentTransaction()
-
-