removed unused argument idleTimeInMilliseconds
This commit is contained in:
parent
ae9a433ebd
commit
d5b44acd09
3 changed files with 0 additions and 5 deletions
|
|
@ -263,7 +263,6 @@ class ConsumerStates {
|
||||||
throttlingReporter,
|
throttlingReporter,
|
||||||
input,
|
input,
|
||||||
argument.shouldCallProcessRecordsEvenForEmptyRecordList(),
|
argument.shouldCallProcessRecordsEvenForEmptyRecordList(),
|
||||||
argument.idleTimeInMilliseconds(),
|
|
||||||
argument.aggregatorUtil(),
|
argument.aggregatorUtil(),
|
||||||
argument.metricsFactory(),
|
argument.metricsFactory(),
|
||||||
argument.schemaRegistryDecoder(),
|
argument.schemaRegistryDecoder(),
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,6 @@ public class ProcessTask implements ConsumerTask {
|
||||||
private final Shard shard;
|
private final Shard shard;
|
||||||
private final ThrottlingReporter throttlingReporter;
|
private final ThrottlingReporter throttlingReporter;
|
||||||
private final boolean shouldCallProcessRecordsEvenForEmptyRecordList;
|
private final boolean shouldCallProcessRecordsEvenForEmptyRecordList;
|
||||||
private final long idleTimeInMilliseconds;
|
|
||||||
private final ProcessRecordsInput processRecordsInput;
|
private final ProcessRecordsInput processRecordsInput;
|
||||||
private final MetricsFactory metricsFactory;
|
private final MetricsFactory metricsFactory;
|
||||||
private final AggregatorUtil aggregatorUtil;
|
private final AggregatorUtil aggregatorUtil;
|
||||||
|
|
@ -78,7 +77,6 @@ public class ProcessTask implements ConsumerTask {
|
||||||
@NonNull ThrottlingReporter throttlingReporter,
|
@NonNull ThrottlingReporter throttlingReporter,
|
||||||
ProcessRecordsInput processRecordsInput,
|
ProcessRecordsInput processRecordsInput,
|
||||||
boolean shouldCallProcessRecordsEvenForEmptyRecordList,
|
boolean shouldCallProcessRecordsEvenForEmptyRecordList,
|
||||||
long idleTimeInMilliseconds,
|
|
||||||
@NonNull AggregatorUtil aggregatorUtil,
|
@NonNull AggregatorUtil aggregatorUtil,
|
||||||
@NonNull MetricsFactory metricsFactory,
|
@NonNull MetricsFactory metricsFactory,
|
||||||
SchemaRegistryDecoder schemaRegistryDecoder,
|
SchemaRegistryDecoder schemaRegistryDecoder,
|
||||||
|
|
@ -91,7 +89,6 @@ public class ProcessTask implements ConsumerTask {
|
||||||
this.throttlingReporter = throttlingReporter;
|
this.throttlingReporter = throttlingReporter;
|
||||||
this.processRecordsInput = processRecordsInput;
|
this.processRecordsInput = processRecordsInput;
|
||||||
this.shouldCallProcessRecordsEvenForEmptyRecordList = shouldCallProcessRecordsEvenForEmptyRecordList;
|
this.shouldCallProcessRecordsEvenForEmptyRecordList = shouldCallProcessRecordsEvenForEmptyRecordList;
|
||||||
this.idleTimeInMilliseconds = idleTimeInMilliseconds;
|
|
||||||
this.metricsFactory = metricsFactory;
|
this.metricsFactory = metricsFactory;
|
||||||
this.schemaRegistryDecoder = schemaRegistryDecoder;
|
this.schemaRegistryDecoder = schemaRegistryDecoder;
|
||||||
this.leaseStatsRecorder = leaseStatsRecorder;
|
this.leaseStatsRecorder = leaseStatsRecorder;
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,6 @@ public class ShardConsumerArgument {
|
||||||
private final long listShardsBackoffTimeInMillis;
|
private final long listShardsBackoffTimeInMillis;
|
||||||
private final int maxListShardsRetryAttempts;
|
private final int maxListShardsRetryAttempts;
|
||||||
private final boolean shouldCallProcessRecordsEvenForEmptyRecordList;
|
private final boolean shouldCallProcessRecordsEvenForEmptyRecordList;
|
||||||
private final long idleTimeInMilliseconds;
|
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
private final InitialPositionInStreamExtended initialPositionInStream;
|
private final InitialPositionInStreamExtended initialPositionInStream;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue