Package org.apache.kafka.clients.admin
Class DescribeConfigsOptions
- java.lang.Object
-
- org.apache.kafka.clients.admin.AbstractOptions<DescribeConfigsOptions>
-
- org.apache.kafka.clients.admin.DescribeConfigsOptions
-
@Evolving public class DescribeConfigsOptions extends AbstractOptions<DescribeConfigsOptions>
Options forAdmin.describeConfigs(Collection)
. The API of this class is evolving, seeAdmin
for details.
-
-
Field Summary
-
Fields inherited from class org.apache.kafka.clients.admin.AbstractOptions
timeoutMs
-
-
Constructor Summary
Constructors Constructor Description DescribeConfigsOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
includeDocumentation()
Return true if config documentation should be returned in the response.DescribeConfigsOptions
includeDocumentation(boolean includeDocumentation)
Set to true if config documentation should be returned in the response.boolean
includeSynonyms()
Return true if synonym configs should be returned in the response.DescribeConfigsOptions
includeSynonyms(boolean includeSynonyms)
Set to true if synonym configs should be returned in the response.DescribeConfigsOptions
timeoutMs(Integer timeoutMs)
Set the timeout in milliseconds for this operation ornull
if the default api timeout for the AdminClient should be used.-
Methods inherited from class org.apache.kafka.clients.admin.AbstractOptions
timeoutMs
-
-
-
-
Method Detail
-
timeoutMs
public DescribeConfigsOptions 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<DescribeConfigsOptions>
-
includeSynonyms
public boolean includeSynonyms()
Return true if synonym configs should be returned in the response.
-
includeDocumentation
public boolean includeDocumentation()
Return true if config documentation should be returned in the response.
-
includeSynonyms
public DescribeConfigsOptions includeSynonyms(boolean includeSynonyms)
Set to true if synonym configs should be returned in the response.
-
includeDocumentation
public DescribeConfigsOptions includeDocumentation(boolean includeDocumentation)
Set to true if config documentation should be returned in the response.
-
-