You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by "maoling (Jira)" <ji...@apache.org> on 2019/10/15 05:52:00 UTC

[jira] [Created] (ZOOKEEPER-3582) refactor the async api call to lambda style

maoling created ZOOKEEPER-3582:
----------------------------------

             Summary: refactor the async api call to lambda style
                 Key: ZOOKEEPER-3582
                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3582
             Project: ZooKeeper
          Issue Type: Improvement
          Components: server
            Reporter: maoling


For example:
{code:java}
if (recursive) {
    ZKUtil.visitSubTreeDFS(zk, path, watch, new StringCallback() {
        @Override
        public void processResult(int rc, String path, Object ctx, String name) {
            out.println(path);
        }
    });
}
{code}
refactor to 
{code:java}
ZKUtil.visitSubTreeDFS(zk, path, watch, (rc, path1, ctx, name) -> out.println(path1));
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)