[ 
https://issues.apache.org/jira/browse/HDFS-16713?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18036024#comment-18036024
 ] 

ASF GitHub Bot commented on HDFS-16713:
---------------------------------------

github-actions[bot] commented on PR #4674:
URL: https://github.com/apache/hadoop/pull/4674#issuecomment-3499945305

   We're closing this stale PR because it has been open for 100 days with no 
activity. This isn't a judgement on the merit of the PR in any way. It's just a 
way of keeping the PR queue manageable.
   If you feel like this was a mistake, or you would like to continue working 
on it, please feel free to re-open it and ask for a committer to remove the 
stale tag and review again.
   Thanks all for your contribution.




> Improve Code with Lambda in org.apahce.hadoop.hdfs.server.namenode sub 
> packages
> -------------------------------------------------------------------------------
>
>                 Key: HDFS-16713
>                 URL: https://issues.apache.org/jira/browse/HDFS-16713
>             Project: Hadoop HDFS
>          Issue Type: Improvement
>            Reporter: ZanderXu
>            Assignee: ZanderXu
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> Improve Code with Lambda in org.apahce.hadoop.hdfs.server.namenode sub 
> packages.
> For example:
> Current logic:
> {code:java}
> public ListenableFuture<GetJournaledEditsResponseProto> getJournaledEdits(
>       long fromTxnId, int maxTransactions) {
>     return parallelExecutor.submit(
>         new Callable<GetJournaledEditsResponseProto>() {
>           @Override
>           public GetJournaledEditsResponseProto call() throws IOException {
>             return getProxy().getJournaledEdits(journalId, nameServiceId,
>                 fromTxnId, maxTransactions);
>           }
>         });
>   } {code}
> Improved Code with Lambda:
> {code:java}
> public ListenableFuture<GetJournaledEditsResponseProto> getJournaledEdits(
>       long fromTxnId, int maxTransactions) {
>     return parallelExecutor.submit(() -> getProxy().getJournaledEdits(
>         journalId, nameServiceId, fromTxnId, maxTransactions));
>   } {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to