Consistent Lock field declaration (instead of ReentrantLock field type)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2023 the original author or authors.
|
||||
* Copyright 2002-2024 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -26,6 +26,7 @@ import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
import java.util.concurrent.locks.Lock;
|
||||
import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
import reactor.core.publisher.Mono;
|
||||
@@ -315,12 +316,10 @@ public class InMemoryWebSessionStore implements WebSessionStore {
|
||||
/** Max time between expiration checks. */
|
||||
private static final int CHECK_PERIOD = 60 * 1000;
|
||||
|
||||
|
||||
private final ReentrantLock lock = new ReentrantLock();
|
||||
private final Lock lock = new ReentrantLock();
|
||||
|
||||
private Instant checkTime = clock.instant().plus(CHECK_PERIOD, ChronoUnit.MILLIS);
|
||||
|
||||
|
||||
public void checkIfNecessary(Instant now) {
|
||||
if (this.checkTime.isBefore(now)) {
|
||||
removeExpiredSessions(now);
|
||||
|
||||
Reference in New Issue
Block a user