martin-g commented on a change in pull request #411: WICKET-6751 Page 
synchronizer strategies
URL: https://github.com/apache/wicket/pull/411#discussion_r388174068
 
 

 ##########
 File path: 
wicket-core/src/main/java/org/apache/wicket/page/DefaultPageLockManager.java
 ##########
 @@ -0,0 +1,201 @@
+package org.apache.wicket.page;
+
+import java.io.Serializable;
+import java.time.Duration;
+import java.time.Instant;
+import java.util.Iterator;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.ConcurrentMap;
+import java.util.function.Supplier;
+
+import org.apache.wicket.Application;
+import org.apache.wicket.settings.ExceptionSettings;
+import org.apache.wicket.util.LazyInitializer;
+import org.apache.wicket.util.lang.Threads;
+import org.apache.wicket.util.time.Durations;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Default {@link IPageLockManager} that that holds a map of locks in the 
current session.
+ * 
+ * @author Igor Vaynberg (ivaynberg)
 
 Review comment:
   Please remove this line. It is not really true anymore.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to