rpuch commented on a change in pull request #414:
URL: https://github.com/apache/ignite-3/pull/414#discussion_r738117146
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/util/IgniteSpinReadWriteLock.java
##########
@@ -17,77 +17,122 @@
package org.apache.ignite.internal.util;
+import java.lang.invoke.MethodHandles;
+import java.lang.invoke.VarHandle;
import java.util.concurrent.TimeUnit;
+
import org.apache.ignite.internal.tostring.S;
/**
- * Spin read-write lock.
+ * <p>Spin read-write lock.
+ * Its blocking methods use spinwait strategy. When they do so, they are not
interruptible (that is, they do not
+ * break their loop on interruption signal).
+ * </p>
Review comment:
Fixed
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]