mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-11 20:45:35 +00:00
ARTEMIS-196 Removing dead variables
Fixing build after removing variable used by FieldUpdater
This commit is contained in:
parent
99b24adfba
commit
5a19c54f9f
@ -227,6 +227,9 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
|
||||
|
||||
private ScheduledFuture<?> redistributorFuture;
|
||||
|
||||
// This is used by an AtomicFieldUpdater
|
||||
private volatile long consumerRemovedTimestamp = -1;
|
||||
|
||||
private final QueueConsumers<ConsumerHolder<? extends Consumer>> consumers = new QueueConsumersImpl<>();
|
||||
|
||||
private final Map<SimpleString, Consumer> groups = new HashMap<>();
|
||||
@ -271,6 +274,10 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
|
||||
|
||||
private final QueueFactory factory;
|
||||
|
||||
public volatile int dispatching = 0;
|
||||
|
||||
public volatile long dispatchStartTime = -1;
|
||||
|
||||
private volatile int consumersBeforeDispatch = 0;
|
||||
|
||||
private volatile long delayBeforeDispatch = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user