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, seeAdminfor 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 booleanincludeDocumentation()Return true if config documentation should be returned in the response.DescribeConfigsOptionsincludeDocumentation(boolean includeDocumentation)Set to true if config documentation should be returned in the response.booleanincludeSynonyms()Return true if synonym configs should be returned in the response.DescribeConfigsOptionsincludeSynonyms(boolean includeSynonyms)Set to true if synonym configs should be returned in the response.DescribeConfigsOptionstimeoutMs(java.lang.Integer timeoutMs)Set the timeout in milliseconds for this operation ornullif 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(java.lang.Integer timeoutMs)
Set the timeout in milliseconds for this operation ornullif the default api timeout for the AdminClient should be used.- Overrides:
timeoutMsin 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.
-
-