Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1060,6 +1060,39 @@ default PulsarEndpointProducerBuilder blockIfQueueFull(
doSetProperty("blockIfQueueFull", blockIfQueueFull);
return this;
}
/**
* Control whether chunking of messages is enabled for the producer.
*
* The option is a: <code>boolean</code> type.
*
* Default: false
* Group: producer
*
* @param chunkingEnabled the value to set
* @return the dsl builder
*/
default PulsarEndpointProducerBuilder chunkingEnabled(
boolean chunkingEnabled) {
doSetProperty("chunkingEnabled", chunkingEnabled);
return this;
}
/**
* Control whether chunking of messages is enabled for the producer.
*
* The option will be converted to a <code>boolean</code>
* type.
*
* Default: false
* Group: producer
*
* @param chunkingEnabled the value to set
* @return the dsl builder
*/
default PulsarEndpointProducerBuilder chunkingEnabled(
String chunkingEnabled) {
doSetProperty("chunkingEnabled", chunkingEnabled);
return this;
}
/**
* Compression type to use.
*
Expand Down