Uses of Interface
org.apache.camel.builder.endpoint.dsl.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder
Packages that use JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder
-
Uses of JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder in org.apache.camel.builder.endpoint.dsl
Subinterfaces of JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder in org.apache.camel.builder.endpoint.dslModifier and TypeInterfaceDescriptionstatic interfaceBuilder for endpoint for the JPA component.Methods in org.apache.camel.builder.endpoint.dsl that return JpaEndpointBuilderFactory.JpaEndpointConsumerBuilderModifier and TypeMethodDescriptionJpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.backoffErrorThreshold(int backoffErrorThreshold) The number of subsequent error polls (failed due some error) that should happen before the backoffMultipler should kick-in.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.backoffErrorThreshold(String backoffErrorThreshold) The number of subsequent error polls (failed due some error) that should happen before the backoffMultipler should kick-in.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.backoffIdleThreshold(int backoffIdleThreshold) The number of subsequent idle polls that should happen before the backoffMultipler should kick-in.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.backoffIdleThreshold(String backoffIdleThreshold) The number of subsequent idle polls that should happen before the backoffMultipler should kick-in.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.backoffMultiplier(int backoffMultiplier) To let the scheduled polling consumer backoff if there has been a number of subsequent idles/errors in a row.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.backoffMultiplier(String backoffMultiplier) To let the scheduled polling consumer backoff if there has been a number of subsequent idles/errors in a row.JpaEndpointBuilderFactory.AdvancedJpaEndpointConsumerBuilder.basic()JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.consumeDelete(boolean consumeDelete) If true, the entity is deleted after it is consumed; if false, the entity is not deleted.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.consumeDelete(String consumeDelete) If true, the entity is deleted after it is consumed; if false, the entity is not deleted.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.consumeLockEntity(boolean consumeLockEntity) Specifies whether or not to set an exclusive lock on each entity bean while processing the results from polling.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.consumeLockEntity(String consumeLockEntity) Specifies whether or not to set an exclusive lock on each entity bean while processing the results from polling.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.delay(long delay) Milliseconds before the next poll.Milliseconds before the next poll.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.deleteHandler(String deleteHandler) To use a custom DeleteHandler to delete the row after the consumer is done processing the exchange.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.deleteHandler(org.apache.camel.component.jpa.DeleteHandler<Object> deleteHandler) To use a custom DeleteHandler to delete the row after the consumer is done processing the exchange.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.greedy(boolean greedy) If greedy is enabled, then the ScheduledPollConsumer will run immediately again, if the previous run polled 1 or more messages.If greedy is enabled, then the ScheduledPollConsumer will run immediately again, if the previous run polled 1 or more messages.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.initialDelay(long initialDelay) Milliseconds before the first poll starts.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.initialDelay(String initialDelay) Milliseconds before the first poll starts.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.joinTransaction(boolean joinTransaction) The camel-jpa component will join transaction by default.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.joinTransaction(String joinTransaction) The camel-jpa component will join transaction by default.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.lockModeType(jakarta.persistence.LockModeType lockModeType) To configure the lock mode on the consumer.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.lockModeType(String lockModeType) To configure the lock mode on the consumer.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.maximumResults(int maximumResults) Set the maximum number of results to retrieve on the Query.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.maximumResults(String maximumResults) Set the maximum number of results to retrieve on the Query.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.maxMessagesPerPoll(int maxMessagesPerPoll) An integer value to define the maximum number of messages to gather per poll.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.maxMessagesPerPoll(String maxMessagesPerPoll) An integer value to define the maximum number of messages to gather per poll.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.namedQuery(String namedQuery) To use a named query.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.nativeQuery(String nativeQuery) To use a custom native query.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.persistenceUnit(String persistenceUnit) The JPA persistence unit used by default.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.preDeleteHandler(String preDeleteHandler) To use a custom Pre-DeleteHandler to delete the row after the consumer has read the entity.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.preDeleteHandler(org.apache.camel.component.jpa.DeleteHandler<Object> preDeleteHandler) To use a custom Pre-DeleteHandler to delete the row after the consumer has read the entity.To use a custom query.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.repeatCount(long repeatCount) Specifies a maximum limit of number of fires.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.repeatCount(String repeatCount) Specifies a maximum limit of number of fires.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.resultClass(Class<Object> resultClass) Defines the type of the returned payload (we will call entityManager.createNativeQuery(nativeQuery, resultClass) instead of entityManager.createNativeQuery(nativeQuery)).JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.resultClass(String resultClass) Defines the type of the returned payload (we will call entityManager.createNativeQuery(nativeQuery, resultClass) instead of entityManager.createNativeQuery(nativeQuery)).JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.runLoggingLevel(String runLoggingLevel) The consumer logs a start/complete log line when it polls.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.runLoggingLevel(org.apache.camel.LoggingLevel runLoggingLevel) The consumer logs a start/complete log line when it polls.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.scheduledExecutorService(String scheduledExecutorService) Allows for configuring a custom/shared thread pool to use for the consumer.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.scheduledExecutorService(ScheduledExecutorService scheduledExecutorService) Allows for configuring a custom/shared thread pool to use for the consumer.To use a cron scheduler from either camel-spring or camel-quartz component.To use a cron scheduler from either camel-spring or camel-quartz component.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.schedulerProperties(String key, Object value) To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.schedulerProperties(Map values) To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.sendEmptyMessageWhenIdle(boolean sendEmptyMessageWhenIdle) If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.sendEmptyMessageWhenIdle(String sendEmptyMessageWhenIdle) If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.skipLockedEntity(boolean skipLockedEntity) To configure whether to use NOWAIT on lock and silently skip the entity.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.skipLockedEntity(String skipLockedEntity) To configure whether to use NOWAIT on lock and silently skip the entity.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.startScheduler(boolean startScheduler) Whether the scheduler should be auto started.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.startScheduler(String startScheduler) Whether the scheduler should be auto started.Time unit for initialDelay and delay options.Time unit for initialDelay and delay options.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.transacted(boolean transacted) Whether to run the consumer in transacted mode, by which all messages will either commit or rollback, when the entire batch has been processed.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.transacted(String transacted) Whether to run the consumer in transacted mode, by which all messages will either commit or rollback, when the entire batch has been processed.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.useFixedDelay(boolean useFixedDelay) Controls if fixed delay or fixed rate is used.JpaEndpointBuilderFactory.JpaEndpointConsumerBuilder.useFixedDelay(String useFixedDelay) Controls if fixed delay or fixed rate is used.