Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/671#discussion_r39130216
--- Diff: tajo-client/src/main/java/org/apache/tajo/client/QueryClient.java
---
@@ -106,7 +107,7 @@
GetQueryResultResponse getResultResponse(QueryId queryId) throws
TajoException;
- TajoMemoryResultSet fetchNextQueryResult(final QueryId queryId, final
int fetchRowNum) throws TajoException;
+ Future<TajoMemoryResultSet> asyncFetchNextQueryResult(final QueryId
queryId, final int fetchRowNum);
--- End diff --
How about renaming it into ``fetchNextQueryResultAsync()``?
It would be more consistent for a method name, starting a verb. So, the
method's full meaning will be 'fetch the next query result asynchronously'.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---