You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pr@cassandra.apache.org by GitBox <gi...@apache.org> on 2019/07/11 20:47:08 UTC

[GitHub] [cassandra] mulugetam commented on a change in pull request #329: Adds Direct IO support for reads.

mulugetam commented on a change in pull request #329: Adds Direct IO support for reads.
URL: https://github.com/apache/cassandra/pull/329#discussion_r302735327
 
 

 ##########
 File path: src/java/org/apache/cassandra/io/compress/BufferType.java
 ##########
 @@ -18,26 +18,43 @@
 package org.apache.cassandra.io.compress;
 
 import java.nio.ByteBuffer;
+import org.apache.cassandra.io.util.DirectIOUtils;
 
 public enum BufferType
 {
     ON_HEAP
     {
+        @Override
         public ByteBuffer allocate(int size)
         {
             return ByteBuffer.allocate(size);
         }
+
+        @Override
 
 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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org
For additional commands, e-mail: pr-help@cassandra.apache.org