Uploaded image for project: 'ZooKeeper'
  1. ZooKeeper
  2. ZOOKEEPER-3582

refactor the async api call to lambda style

    XMLWordPrintableJSON

Details

    Description

      For example:

      if (recursive) {
          ZKUtil.visitSubTreeDFS(zk, path, watch, new StringCallback() {
              @Override
              public void processResult(int rc, String path, Object ctx, String name) {
                  out.println(path);
              }
          });
      }
      

      refactor to 

      ZKUtil.visitSubTreeDFS(zk, path, watch, (rc, path1, ctx, name) -> out.println(path1));
      

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              maoling Ling Mao
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 50m
                  50m