|
Spring Integration Kafka Support | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Configuration
Used to configure a DefaultConnectionFactory
. Provides a list of seed brokers.
Method Summary | |
---|---|
java.util.List<BrokerAddress> |
getBrokerAddresses()
The list of seed broker addresses used by this Configuration. |
int |
getBufferSize()
The buffer size for this client |
java.lang.String |
getClientId()
The client name to be used throughout this connection. |
java.util.List<Partition> |
getDefaultPartitions()
A list of default partitions to perform operations on. |
java.lang.String |
getDefaultTopic()
A default topic to perform operations on. |
int |
getFetchMetadataTimeout()
The timeout on fetching metadata (e.g. |
int |
getMaxWait()
The maximum amount of time that a server fetch operation will wait before returning (unless minFetchSizeInBytes ) are available. |
int |
getMinBytes()
The minimum amount of data that a server fetch operation will wait for before returning, unless maxWait has elapsed. |
int |
getSocketTimeout()
The socket timeout for this client |
Method Detail |
---|
int getMinBytes()
maxWait
has elapsed.
In conjunction with getMaxWait()
}, controls latency
and throughput.
Smaller values increase responsiveness, but may increase the number of poll operations,
potentially reducing throughput and increasing CPU consumption.
int getMaxWait()
minFetchSizeInBytes
) are available.
In conjunction with AbstractConfiguration.setMinBytes(int)
,
controls latency and throughput.
Smaller intervals increase responsiveness, but may increase
the number of poll operations, potentially increasing CPU
consumption and reducing throughput.
java.lang.String getClientId()
int getBufferSize()
int getSocketTimeout()
int getFetchMetadataTimeout()
java.util.List<BrokerAddress> getBrokerAddresses()
java.util.List<Partition> getDefaultPartitions()
java.lang.String getDefaultTopic()
|
Spring Integration Kafka Support | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |