bmarwell commented on code in PR #58:
URL: 
https://github.com/apache/maven-build-cache-extension/pull/58#discussion_r1227069806


##########
src/main/java/org/apache/maven/buildcache/hash/Zah.java:
##########
@@ -20,43 +20,55 @@
 
 import java.io.IOException;
 import java.nio.ByteBuffer;
+import java.nio.channels.FileChannel;
 import java.nio.file.Files;
 import java.nio.file.Path;
 
 import net.openhft.hashing.LongHashFunction;
 
+import static java.nio.channels.FileChannel.MapMode.READ_ONLY;
+import static java.nio.file.StandardOpenOption.READ;
+
 /**
- * XX
+ * Zero-Allocation-Hash based factory
  */
-public class XX implements Hash.Factory {
+public class Zah implements Hash.Factory {
+
+    private final String name;
+    private final LongHashFunction hash;
+    private final boolean useMemoryMappedBuffers;
 
-    static final LongHashFunction INSTANCE = LongHashFunction.xx();
+    public Zah(String name, LongHashFunction hash, boolean 
useMemoryMappedBuffers) {

Review Comment:
   -1 on the boolean parameter. What if you need to distinguish further? Better 
use a String or Enum.



-- 
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: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to