You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wicket.apache.org by GitBox <gi...@apache.org> on 2020/03/05 09:47:04 UTC

[GitHub] [wicket] martin-g commented on a change in pull request #411: WICKET-6751 Page synchronizer strategies

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:
users@infra.apache.org


With regards,
Apache Git Services