yangxk1 commented on issue #756:
URL: 
https://github.com/apache/incubator-graphar/issues/756#issuecomment-3301534711

   For Q2, I think we can provide an abstract interface, and different memory 
types can implement this interface.
   ```
   interface Row{
       public<T> T getValue(Long columnIndex);
   }
   
   class ArrowProxy implements Row{
       public<T> T getValue(Long columnIndex) {
           //use arrow library to decoding
       }
   }
   ```


-- 
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: commits-unsubscr...@graphar.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@graphar.apache.org
For additional commands, e-mail: commits-h...@graphar.apache.org

Reply via email to