Package org.apache.kafka.clients.admin
Class CreateTopicsOptions
- java.lang.Object
-
- org.apache.kafka.clients.admin.AbstractOptions<CreateTopicsOptions>
-
- org.apache.kafka.clients.admin.CreateTopicsOptions
-
@Evolving public class CreateTopicsOptions extends AbstractOptions<CreateTopicsOptions>
Options forAdmin.createTopics(Collection)
. The API of this class is evolving, seeAdmin
for details.
-
-
Constructor Summary
Constructors Constructor Description CreateTopicsOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateTopicsOptions
retryOnQuotaViolation(boolean retryOnQuotaViolation)
Set to true if quota violation should be automatically retried.boolean
shouldRetryOnQuotaViolation()
Returns true if quota violation should be automatically retried.boolean
shouldValidateOnly()
Return true if the request should be validated without creating the topic.CreateTopicsOptions
timeoutMs(Integer timeoutMs)
Set the timeout in milliseconds for this operation ornull
if the default api timeout for the AdminClient should be used.CreateTopicsOptions
validateOnly(boolean validateOnly)
Set to true if the request should be validated without creating the topic.-
Methods inherited from class org.apache.kafka.clients.admin.AbstractOptions
timeoutMs
-
-
-
-
Method Detail
-
timeoutMs
public CreateTopicsOptions timeoutMs(Integer timeoutMs)
Set the timeout in milliseconds for this operation ornull
if the default api timeout for the AdminClient should be used.- Overrides:
timeoutMs
in classAbstractOptions<CreateTopicsOptions>
-
validateOnly
public CreateTopicsOptions validateOnly(boolean validateOnly)
Set to true if the request should be validated without creating the topic.
-
shouldValidateOnly
public boolean shouldValidateOnly()
Return true if the request should be validated without creating the topic.
-
retryOnQuotaViolation
public CreateTopicsOptions retryOnQuotaViolation(boolean retryOnQuotaViolation)
Set to true if quota violation should be automatically retried.
-
shouldRetryOnQuotaViolation
public boolean shouldRetryOnQuotaViolation()
Returns true if quota violation should be automatically retried.
-
-