public static interface KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
| Modifier and Type | Method and Description |
|---|---|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
additionalProperties(Map values)
Sets additional properties for either kafka consumer or kafka
producer in case they can't be set directly on the camel
configurations (e.g: new Kafka properties that are not reflected yet
in Camel configurations), the properties have to be prefixed with
additionalProperties..
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
additionalProperties(String key,
Object value)
Sets additional properties for either kafka consumer or kafka
producer in case they can't be set directly on the camel
configurations (e.g: new Kafka properties that are not reflected yet
in Camel configurations), the properties have to be prefixed with
additionalProperties..
|
default KafkaEndpointBuilderFactory.AdvancedKafkaEndpointConsumerBuilder |
advanced() |
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
allowManualCommit(boolean allowManualCommit)
Whether to allow doing manual commits via KafkaManualCommit.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
allowManualCommit(String allowManualCommit)
Whether to allow doing manual commits via KafkaManualCommit.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
autoCommitEnable(Boolean autoCommitEnable)
If true, periodically commit to ZooKeeper the offset of messages
already fetched by the consumer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
autoCommitEnable(String autoCommitEnable)
If true, periodically commit to ZooKeeper the offset of messages
already fetched by the consumer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
autoCommitIntervalMs(Integer autoCommitIntervalMs)
The frequency in ms that the consumer offsets are committed to
zookeeper.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
autoCommitIntervalMs(String autoCommitIntervalMs)
The frequency in ms that the consumer offsets are committed to
zookeeper.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
autoCommitOnStop(String autoCommitOnStop)
Whether to perform an explicit auto commit when the consumer stops to
ensure the broker has a commit from the last consumed message.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
autoOffsetReset(String autoOffsetReset)
What to do when there is no initial offset in ZooKeeper or if an
offset is out of range: earliest : automatically reset the offset to
the earliest offset latest : automatically reset the offset to the
latest offset fail: throw exception to the consumer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
breakOnFirstError(boolean breakOnFirstError)
This options controls what happens when a consumer is processing an
exchange and it fails.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
breakOnFirstError(String breakOnFirstError)
This options controls what happens when a consumer is processing an
exchange and it fails.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
bridgeErrorHandler(String bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
brokers(String brokers)
URL of the Kafka brokers to use.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
checkCrcs(Boolean checkCrcs)
Automatically check the CRC32 of the records consumed.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
checkCrcs(String checkCrcs)
Automatically check the CRC32 of the records consumed.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
clientId(String clientId)
The client id is a user-specified string sent in each request to help
trace calls.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
commitTimeoutMs(Long commitTimeoutMs)
The maximum time, in milliseconds, that the code will wait for a
synchronous commit to complete.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
commitTimeoutMs(String commitTimeoutMs)
The maximum time, in milliseconds, that the code will wait for a
synchronous commit to complete.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
consumerRequestTimeoutMs(Integer consumerRequestTimeoutMs)
The configuration controls the maximum amount of time the client will
wait for the response of a request.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
consumerRequestTimeoutMs(String consumerRequestTimeoutMs)
The configuration controls the maximum amount of time the client will
wait for the response of a request.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
consumersCount(int consumersCount)
The number of consumers that connect to kafka server.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
consumersCount(String consumersCount)
The number of consumers that connect to kafka server.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
fetchMaxBytes(Integer fetchMaxBytes)
The maximum amount of data the server should return for a fetch
request This is not an absolute maximum, if the first message in the
first non-empty partition of the fetch is larger than this value, the
message will still be returned to ensure that the consumer can make
progress.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
fetchMaxBytes(String fetchMaxBytes)
The maximum amount of data the server should return for a fetch
request This is not an absolute maximum, if the first message in the
first non-empty partition of the fetch is larger than this value, the
message will still be returned to ensure that the consumer can make
progress.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
fetchMinBytes(Integer fetchMinBytes)
The minimum amount of data the server should return for a fetch
request.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
fetchMinBytes(String fetchMinBytes)
The minimum amount of data the server should return for a fetch
request.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
fetchWaitMaxMs(Integer fetchWaitMaxMs)
The maximum amount of time the server will block before answering the
fetch request if there isn't sufficient data to immediately satisfy
fetch.min.bytes.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
fetchWaitMaxMs(String fetchWaitMaxMs)
The maximum amount of time the server will block before answering the
fetch request if there isn't sufficient data to immediately satisfy
fetch.min.bytes.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
groupId(String groupId)
A string that uniquely identifies the group of consumer processes to
which this consumer belongs.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
groupInstanceId(String groupInstanceId)
A unique identifier of the consumer instance provided by the end
user.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
headerDeserializer(Object headerDeserializer)
To use a custom KafkaHeaderDeserializer to deserialize kafka headers
values.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
headerDeserializer(String headerDeserializer)
To use a custom KafkaHeaderDeserializer to deserialize kafka headers
values.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
To use a custom HeaderFilterStrategy to filter header to and from
Camel message.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
headerFilterStrategy(String headerFilterStrategy)
To use a custom HeaderFilterStrategy to filter header to and from
Camel message.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
heartbeatIntervalMs(Integer heartbeatIntervalMs)
The expected time between heartbeats to the consumer coordinator when
using Kafka's group management facilities.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
heartbeatIntervalMs(String heartbeatIntervalMs)
The expected time between heartbeats to the consumer coordinator when
using Kafka's group management facilities.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
interceptorClasses(String interceptorClasses)
Sets interceptors for producer or consumers.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosBeforeReloginMinTime(Integer kerberosBeforeReloginMinTime)
Login thread sleep time between refresh attempts.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosBeforeReloginMinTime(String kerberosBeforeReloginMinTime)
Login thread sleep time between refresh attempts.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosInitCmd(String kerberosInitCmd)
Kerberos kinit command path.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosPrincipalToLocalRules(String kerberosPrincipalToLocalRules)
A list of rules for mapping from principal names to short names
(typically operating system usernames).
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosRenewJitter(Double kerberosRenewJitter)
Percentage of random jitter added to the renewal time.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosRenewJitter(String kerberosRenewJitter)
Percentage of random jitter added to the renewal time.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosRenewWindowFactor(Double kerberosRenewWindowFactor)
Login thread will sleep until the specified window factor of time
from last refresh to ticket's expiry has been reached, at which time
it will try to renew the ticket.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
kerberosRenewWindowFactor(String kerberosRenewWindowFactor)
Login thread will sleep until the specified window factor of time
from last refresh to ticket's expiry has been reached, at which time
it will try to renew the ticket.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
keyDeserializer(String keyDeserializer)
Deserializer class for key that implements the Deserializer
interface.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
maxPartitionFetchBytes(Integer maxPartitionFetchBytes)
The maximum amount of data per-partition the server will return.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
maxPartitionFetchBytes(String maxPartitionFetchBytes)
The maximum amount of data per-partition the server will return.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
maxPollIntervalMs(Long maxPollIntervalMs)
The maximum delay between invocations of poll() when using consumer
group management.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
maxPollIntervalMs(String maxPollIntervalMs)
The maximum delay between invocations of poll() when using consumer
group management.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
maxPollRecords(Integer maxPollRecords)
The maximum number of records returned in a single call to poll().
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
maxPollRecords(String maxPollRecords)
The maximum number of records returned in a single call to poll().
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
offsetRepository(org.apache.camel.spi.StateRepository<String,String> offsetRepository)
The offset repository to use in order to locally store the offset of
each partition of the topic.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
offsetRepository(String offsetRepository)
The offset repository to use in order to locally store the offset of
each partition of the topic.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
partitionAssignor(String partitionAssignor)
The class name of the partition assignment strategy that the client
will use to distribute partition ownership amongst consumer instances
when group management is used.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
pollOnError(KafkaEndpointBuilderFactory.PollOnError pollOnError)
What to do if kafka threw an exception while polling for new
messages.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
pollOnError(String pollOnError)
What to do if kafka threw an exception while polling for new
messages.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
pollTimeoutMs(Long pollTimeoutMs)
The timeout used when polling the KafkaConsumer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
pollTimeoutMs(String pollTimeoutMs)
The timeout used when polling the KafkaConsumer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
reconnectBackoffMaxMs(Integer reconnectBackoffMaxMs)
The maximum amount of time in milliseconds to wait when reconnecting
to a broker that has repeatedly failed to connect.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
reconnectBackoffMaxMs(String reconnectBackoffMaxMs)
The maximum amount of time in milliseconds to wait when reconnecting
to a broker that has repeatedly failed to connect.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
resumeStrategy(Object resumeStrategy)
This option allows the user to set a custom resume strategy.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
resumeStrategy(String resumeStrategy)
This option allows the user to set a custom resume strategy.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
saslJaasConfig(String saslJaasConfig)
Expose the kafka sasl.jaas.config parameter Example:
org.apache.kafka.common.security.plain.PlainLoginModule required
username=USERNAME password=PASSWORD;.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
saslKerberosServiceName(String saslKerberosServiceName)
The Kerberos principal name that Kafka runs as.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
saslMechanism(String saslMechanism)
The Simple Authentication and Security Layer (SASL) Mechanism used.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
schemaRegistryURL(String schemaRegistryURL)
URL of the Confluent Platform schema registry servers to use.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
securityProtocol(String securityProtocol)
Protocol used to communicate with brokers.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
seekTo(String seekTo)
Set if KafkaConsumer will read from beginning or end on startup:
beginning : read from beginning end : read from end This is replacing
the earlier property seekToBeginning.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sessionTimeoutMs(Integer sessionTimeoutMs)
The timeout used to detect failures when using Kafka's group
management facilities.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sessionTimeoutMs(String sessionTimeoutMs)
The timeout used to detect failures when using Kafka's group
management facilities.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
shutdownTimeout(int shutdownTimeout)
Timeout in milliseconds to wait gracefully for the consumer or
producer to shutdown and terminate its worker threads.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
shutdownTimeout(String shutdownTimeout)
Timeout in milliseconds to wait gracefully for the consumer or
producer to shutdown and terminate its worker threads.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
specificAvroReader(boolean specificAvroReader)
This enables the use of a specific Avro reader for use with the
Confluent Platform schema registry and the
io.confluent.kafka.serializers.KafkaAvroDeserializer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
specificAvroReader(String specificAvroReader)
This enables the use of a specific Avro reader for use with the
Confluent Platform schema registry and the
io.confluent.kafka.serializers.KafkaAvroDeserializer.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslCipherSuites(String sslCipherSuites)
A list of cipher suites.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslContextParameters(Object sslContextParameters)
SSL configuration using a Camel SSLContextParameters object.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslContextParameters(String sslContextParameters)
SSL configuration using a Camel SSLContextParameters object.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslEnabledProtocols(String sslEnabledProtocols)
The list of protocols enabled for SSL connections.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslEndpointAlgorithm(String sslEndpointAlgorithm)
The endpoint identification algorithm to validate server hostname
using server certificate.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslKeymanagerAlgorithm(String sslKeymanagerAlgorithm)
The algorithm used by key manager factory for SSL connections.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslKeystoreType(String sslKeystoreType)
The file format of the key store file.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslProtocol(String sslProtocol)
The SSL protocol used to generate the SSLContext.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslProvider(String sslProvider)
The name of the security provider used for SSL connections.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslTrustmanagerAlgorithm(String sslTrustmanagerAlgorithm)
The algorithm used by trust manager factory for SSL connections.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
sslTruststoreType(String sslTruststoreType)
The file format of the trust store file.
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
topicIsPattern(boolean topicIsPattern)
Whether the topic is a pattern (regular expression).
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
topicIsPattern(String topicIsPattern)
Whether the topic is a pattern (regular expression).
|
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder |
valueDeserializer(String valueDeserializer)
Deserializer class for value that implements the Deserializer
interface.
|
default KafkaEndpointBuilderFactory.AdvancedKafkaEndpointConsumerBuilder advanced()
default KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder additionalProperties(String key, Object value)
key - the option keyvalue - the option valuedefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder additionalProperties(Map values)
values - the valuesdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder brokers(String brokers)
brokers - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder clientId(String clientId)
clientId - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
headerFilterStrategy - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder headerFilterStrategy(String headerFilterStrategy)
headerFilterStrategy - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder reconnectBackoffMaxMs(Integer reconnectBackoffMaxMs)
reconnectBackoffMaxMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder reconnectBackoffMaxMs(String reconnectBackoffMaxMs)
reconnectBackoffMaxMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder shutdownTimeout(int shutdownTimeout)
shutdownTimeout - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder shutdownTimeout(String shutdownTimeout)
shutdownTimeout - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder allowManualCommit(boolean allowManualCommit)
allowManualCommit - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder allowManualCommit(String allowManualCommit)
allowManualCommit - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder autoCommitEnable(Boolean autoCommitEnable)
autoCommitEnable - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder autoCommitEnable(String autoCommitEnable)
autoCommitEnable - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder autoCommitIntervalMs(Integer autoCommitIntervalMs)
autoCommitIntervalMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder autoCommitIntervalMs(String autoCommitIntervalMs)
autoCommitIntervalMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder autoCommitOnStop(String autoCommitOnStop)
autoCommitOnStop - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder autoOffsetReset(String autoOffsetReset)
autoOffsetReset - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder breakOnFirstError(boolean breakOnFirstError)
breakOnFirstError - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder breakOnFirstError(String breakOnFirstError)
breakOnFirstError - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
bridgeErrorHandler - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder bridgeErrorHandler(String bridgeErrorHandler)
bridgeErrorHandler - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder checkCrcs(Boolean checkCrcs)
checkCrcs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder checkCrcs(String checkCrcs)
checkCrcs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder commitTimeoutMs(Long commitTimeoutMs)
commitTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder commitTimeoutMs(String commitTimeoutMs)
commitTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder consumerRequestTimeoutMs(Integer consumerRequestTimeoutMs)
consumerRequestTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder consumerRequestTimeoutMs(String consumerRequestTimeoutMs)
consumerRequestTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder consumersCount(int consumersCount)
consumersCount - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder consumersCount(String consumersCount)
consumersCount - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder fetchMaxBytes(Integer fetchMaxBytes)
fetchMaxBytes - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder fetchMaxBytes(String fetchMaxBytes)
fetchMaxBytes - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder fetchMinBytes(Integer fetchMinBytes)
fetchMinBytes - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder fetchMinBytes(String fetchMinBytes)
fetchMinBytes - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder fetchWaitMaxMs(Integer fetchWaitMaxMs)
fetchWaitMaxMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder fetchWaitMaxMs(String fetchWaitMaxMs)
fetchWaitMaxMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder groupId(String groupId)
groupId - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder groupInstanceId(String groupInstanceId)
groupInstanceId - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder headerDeserializer(Object headerDeserializer)
headerDeserializer - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder headerDeserializer(String headerDeserializer)
headerDeserializer - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder heartbeatIntervalMs(Integer heartbeatIntervalMs)
heartbeatIntervalMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder heartbeatIntervalMs(String heartbeatIntervalMs)
heartbeatIntervalMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder keyDeserializer(String keyDeserializer)
keyDeserializer - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder maxPartitionFetchBytes(Integer maxPartitionFetchBytes)
maxPartitionFetchBytes - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder maxPartitionFetchBytes(String maxPartitionFetchBytes)
maxPartitionFetchBytes - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder maxPollIntervalMs(Long maxPollIntervalMs)
maxPollIntervalMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder maxPollIntervalMs(String maxPollIntervalMs)
maxPollIntervalMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder maxPollRecords(Integer maxPollRecords)
maxPollRecords - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder maxPollRecords(String maxPollRecords)
maxPollRecords - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder offsetRepository(org.apache.camel.spi.StateRepository<String,String> offsetRepository)
offsetRepository - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder offsetRepository(String offsetRepository)
offsetRepository - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder partitionAssignor(String partitionAssignor)
partitionAssignor - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder pollOnError(KafkaEndpointBuilderFactory.PollOnError pollOnError)
pollOnError - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder pollOnError(String pollOnError)
pollOnError - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder pollTimeoutMs(Long pollTimeoutMs)
pollTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder pollTimeoutMs(String pollTimeoutMs)
pollTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder resumeStrategy(Object resumeStrategy)
resumeStrategy - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder resumeStrategy(String resumeStrategy)
resumeStrategy - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder seekTo(String seekTo)
seekTo - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sessionTimeoutMs(Integer sessionTimeoutMs)
sessionTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sessionTimeoutMs(String sessionTimeoutMs)
sessionTimeoutMs - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder specificAvroReader(boolean specificAvroReader)
specificAvroReader - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder specificAvroReader(String specificAvroReader)
specificAvroReader - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder topicIsPattern(boolean topicIsPattern)
topicIsPattern - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder topicIsPattern(String topicIsPattern)
topicIsPattern - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder valueDeserializer(String valueDeserializer)
valueDeserializer - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder schemaRegistryURL(String schemaRegistryURL)
schemaRegistryURL - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder interceptorClasses(String interceptorClasses)
interceptorClasses - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosBeforeReloginMinTime(Integer kerberosBeforeReloginMinTime)
kerberosBeforeReloginMinTime - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosBeforeReloginMinTime(String kerberosBeforeReloginMinTime)
kerberosBeforeReloginMinTime - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosInitCmd(String kerberosInitCmd)
kerberosInitCmd - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosPrincipalToLocalRules(String kerberosPrincipalToLocalRules)
kerberosPrincipalToLocalRules - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosRenewJitter(Double kerberosRenewJitter)
kerberosRenewJitter - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosRenewJitter(String kerberosRenewJitter)
kerberosRenewJitter - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosRenewWindowFactor(Double kerberosRenewWindowFactor)
kerberosRenewWindowFactor - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder kerberosRenewWindowFactor(String kerberosRenewWindowFactor)
kerberosRenewWindowFactor - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder saslJaasConfig(String saslJaasConfig)
saslJaasConfig - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder saslKerberosServiceName(String saslKerberosServiceName)
saslKerberosServiceName - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder saslMechanism(String saslMechanism)
saslMechanism - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder securityProtocol(String securityProtocol)
securityProtocol - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslCipherSuites(String sslCipherSuites)
sslCipherSuites - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslContextParameters(Object sslContextParameters)
sslContextParameters - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslContextParameters(String sslContextParameters)
sslContextParameters - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslEnabledProtocols(String sslEnabledProtocols)
sslEnabledProtocols - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslEndpointAlgorithm(String sslEndpointAlgorithm)
sslEndpointAlgorithm - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslKeymanagerAlgorithm(String sslKeymanagerAlgorithm)
sslKeymanagerAlgorithm - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslKeystoreType(String sslKeystoreType)
sslKeystoreType - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslProtocol(String sslProtocol)
sslProtocol - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslProvider(String sslProvider)
sslProvider - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslTrustmanagerAlgorithm(String sslTrustmanagerAlgorithm)
sslTrustmanagerAlgorithm - the value to setdefault KafkaEndpointBuilderFactory.KafkaEndpointConsumerBuilder sslTruststoreType(String sslTruststoreType)
sslTruststoreType - the value to setApache Camel