Uses of Interface
org.apache.camel.builder.endpoint.dsl.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder
Packages that use AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder
-
Uses of AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder in org.apache.camel.builder.endpoint.dsl
Methods in org.apache.camel.builder.endpoint.dsl that return AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilderModifier and TypeMethodDescriptionAMQPEndpointBuilderFactory.AMQPEndpointBuilder.advanced()AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.allowSerializedHeaders(boolean allowSerializedHeaders) Controls whether or not to include serialized headers.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.allowSerializedHeaders(String allowSerializedHeaders) Controls whether or not to include serialized headers.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.artemisStreamingEnabled(boolean artemisStreamingEnabled) Whether optimizing for Apache Artemis streaming mode.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.artemisStreamingEnabled(String artemisStreamingEnabled) Whether optimizing for Apache Artemis streaming mode.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.asyncStartListener(boolean asyncStartListener) Whether to startup the JmsConsumer message listener asynchronously, when starting a route.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.asyncStartListener(String asyncStartListener) Whether to startup the JmsConsumer message listener asynchronously, when starting a route.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.asyncStopListener(boolean asyncStopListener) Whether to stop the JmsConsumer message listener asynchronously, when stopping a route.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.asyncStopListener(String asyncStopListener) Whether to stop the JmsConsumer message listener asynchronously, when stopping a route.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.destinationResolver(String destinationResolver) A pluggable org.springframework.jms.support.destination.DestinationResolver that allows you to use your own resolver (for example, to lookup the real destination in a JNDI registry).AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.destinationResolver(org.springframework.jms.support.destination.DestinationResolver destinationResolver) A pluggable org.springframework.jms.support.destination.DestinationResolver that allows you to use your own resolver (for example, to lookup the real destination in a JNDI registry).AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.errorHandler(String errorHandler) Specifies a org.springframework.util.ErrorHandler to be invoked in case of any uncaught exceptions thrown while processing a Message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.errorHandler(org.springframework.util.ErrorHandler errorHandler) Specifies a org.springframework.util.ErrorHandler to be invoked in case of any uncaught exceptions thrown while processing a Message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.exceptionListener(jakarta.jms.ExceptionListener exceptionListener) Specifies the JMS Exception Listener that is to be notified of any underlying JMS exceptions.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.exceptionListener(String exceptionListener) Specifies the JMS Exception Listener that is to be notified of any underlying JMS exceptions.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.headerFilterStrategy(String headerFilterStrategy) To use a custom HeaderFilterStrategy to filter header to and from Camel message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy) To use a custom HeaderFilterStrategy to filter header to and from Camel message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.idleConsumerLimit(int idleConsumerLimit) Specify the limit for the number of consumers that are allowed to be idle at any given time.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.idleConsumerLimit(String idleConsumerLimit) Specify the limit for the number of consumers that are allowed to be idle at any given time.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.idleTaskExecutionLimit(int idleTaskExecutionLimit) Specifies the limit for idle executions of a receive task, not having received any message within its execution.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.idleTaskExecutionLimit(String idleTaskExecutionLimit) Specifies the limit for idle executions of a receive task, not having received any message within its execution.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.includeAllJMSXProperties(boolean includeAllJMSXProperties) Whether to include all JMSXxxx properties when mapping from JMS to Camel Message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.includeAllJMSXProperties(String includeAllJMSXProperties) Whether to include all JMSXxxx properties when mapping from JMS to Camel Message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.jmsKeyFormatStrategy(String jmsKeyFormatStrategy) Pluggable strategy for encoding and decoding JMS keys so they can be compliant with the JMS specification.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.jmsKeyFormatStrategy(org.apache.camel.component.jms.JmsKeyFormatStrategy jmsKeyFormatStrategy) Pluggable strategy for encoding and decoding JMS keys so they can be compliant with the JMS specification.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.lazyCreateTransactionManager(boolean lazyCreateTransactionManager) If true, Camel will create a JmsTransactionManager, if there is no transactionManager injected when option transacted=true.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.lazyCreateTransactionManager(String lazyCreateTransactionManager) If true, Camel will create a JmsTransactionManager, if there is no transactionManager injected when option transacted=true.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.mapJmsMessage(boolean mapJmsMessage) Specifies whether Camel should auto map the received JMS message to a suited payload type, such as jakarta.jms.TextMessage to a String etc.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.mapJmsMessage(String mapJmsMessage) Specifies whether Camel should auto map the received JMS message to a suited payload type, such as jakarta.jms.TextMessage to a String etc.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.maxMessagesPerTask(int maxMessagesPerTask) The number of messages per task.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.maxMessagesPerTask(String maxMessagesPerTask) The number of messages per task.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageConverter(String messageConverter) To use a custom Spring org.springframework.jms.support.converter.MessageConverter so you can be in control how to map to/from a jakarta.jms.Message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageConverter(org.springframework.jms.support.converter.MessageConverter messageConverter) To use a custom Spring org.springframework.jms.support.converter.MessageConverter so you can be in control how to map to/from a jakarta.jms.Message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageCreatedStrategy(String messageCreatedStrategy) To use the given MessageCreatedStrategy which are invoked when Camel creates new instances of jakarta.jms.Message objects when Camel is sending a JMS message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageCreatedStrategy(org.apache.camel.component.jms.MessageCreatedStrategy messageCreatedStrategy) To use the given MessageCreatedStrategy which are invoked when Camel creates new instances of jakarta.jms.Message objects when Camel is sending a JMS message.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageIdEnabled(boolean messageIdEnabled) When sending, specifies whether message IDs should be added.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageIdEnabled(String messageIdEnabled) When sending, specifies whether message IDs should be added.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageListenerContainerFactory(String messageListenerContainerFactory) Registry ID of the MessageListenerContainerFactory used to determine what org.springframework.jms.listener.AbstractMessageListenerContainer to use to consume messages.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageListenerContainerFactory(org.apache.camel.component.jms.MessageListenerContainerFactory messageListenerContainerFactory) Registry ID of the MessageListenerContainerFactory used to determine what org.springframework.jms.listener.AbstractMessageListenerContainer to use to consume messages.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageTimestampEnabled(boolean messageTimestampEnabled) Specifies whether timestamps should be enabled by default on sending messages.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.messageTimestampEnabled(String messageTimestampEnabled) Specifies whether timestamps should be enabled by default on sending messages.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.pubSubNoLocal(boolean pubSubNoLocal) Specifies whether to inhibit the delivery of messages published by its own connection.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.pubSubNoLocal(String pubSubNoLocal) Specifies whether to inhibit the delivery of messages published by its own connection.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.receiveTimeout(long receiveTimeout) The timeout for receiving messages (in milliseconds).AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.receiveTimeout(String receiveTimeout) The timeout for receiving messages (in milliseconds).AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.recoveryInterval(long recoveryInterval) Specifies the interval between recovery attempts, i.e.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.recoveryInterval(String recoveryInterval) Specifies the interval between recovery attempts, i.e.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.requestTimeoutCheckerInterval(long requestTimeoutCheckerInterval) Configures how often Camel should check for timed out Exchanges when doing request/reply over JMS.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.requestTimeoutCheckerInterval(String requestTimeoutCheckerInterval) Configures how often Camel should check for timed out Exchanges when doing request/reply over JMS.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.synchronous(boolean synchronous) Sets whether synchronous processing should be strictly used.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.synchronous(String synchronous) Sets whether synchronous processing should be strictly used.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transactionManager(String transactionManager) The Spring transaction manager to use.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transactionManager(org.springframework.transaction.PlatformTransactionManager transactionManager) The Spring transaction manager to use.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transactionName(String transactionName) The name of the transaction to use.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transactionTimeout(int transactionTimeout) The timeout value of the transaction (in seconds), if using transacted mode.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transactionTimeout(String transactionTimeout) The timeout value of the transaction (in seconds), if using transacted mode.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transferException(boolean transferException) If enabled and you are using Request Reply messaging (InOut) and an Exchange failed on the consumer side, then the caused Exception will be send back in response as a jakarta.jms.ObjectMessage.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transferException(String transferException) If enabled and you are using Request Reply messaging (InOut) and an Exchange failed on the consumer side, then the caused Exception will be send back in response as a jakarta.jms.ObjectMessage.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transferExchange(boolean transferExchange) You can transfer the exchange over the wire instead of just the body and headers.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.transferExchange(String transferExchange) You can transfer the exchange over the wire instead of just the body and headers.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.useMessageIDAsCorrelationID(boolean useMessageIDAsCorrelationID) Specifies whether JMSMessageID should always be used as JMSCorrelationID for InOut messages.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.useMessageIDAsCorrelationID(String useMessageIDAsCorrelationID) Specifies whether JMSMessageID should always be used as JMSCorrelationID for InOut messages.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.waitForProvisionCorrelationToBeUpdatedCounter(int waitForProvisionCorrelationToBeUpdatedCounter) Number of times to wait for provisional correlation id to be updated to the actual correlation id when doing request/reply over JMS and when the option useMessageIDAsCorrelationID is enabled.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.waitForProvisionCorrelationToBeUpdatedCounter(String waitForProvisionCorrelationToBeUpdatedCounter) Number of times to wait for provisional correlation id to be updated to the actual correlation id when doing request/reply over JMS and when the option useMessageIDAsCorrelationID is enabled.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.waitForProvisionCorrelationToBeUpdatedThreadSleepingTime(long waitForProvisionCorrelationToBeUpdatedThreadSleepingTime) Interval in millis to sleep each time while waiting for provisional correlation id to be updated.AMQPEndpointBuilderFactory.AdvancedAMQPEndpointBuilder.waitForProvisionCorrelationToBeUpdatedThreadSleepingTime(String waitForProvisionCorrelationToBeUpdatedThreadSleepingTime) Interval in millis to sleep each time while waiting for provisional correlation id to be updated.