Curator 异步获取结果

原声的ZooKeeper 的CRUD API有同步和异步之分,对于异步API,需要传递AsyncCallback回调。对于getData,getChildren,exists这三个API,还可以设置Watcher。这些功能在Curator中是如何实现的?

在Curator中,可以通过如下三种方式来异步获取结果:

1.inBackground()+CuratorListener

2.inBackground(new BackgroundCallback(){ public void processResult(CuratorFramework client,CuratorEvent event){}})

3.inBackground(newBackgroundCallback(){},Executor)

以inBackground()+CuratorListener这种方式来使用异步API,如下:

             client.getCuratorListenable().addListener(new CuratorListener(){

                @Override
                public void eventReceived(CuratorFramework client, CuratorEvent event) throws Exception {
                     // TODO Auto-generated method stub
                    if(event.getType()==CuratorEventType.CREATE){
                        System.out.println("create path="+event.getPath()+",code="+event.getResultCode());
                    }else if(event.getType()==CuratorEventType.GET_DATA){
                        System.out.println("get path="+event.getPath()+",data="+new String(event.getData()));
                    }else if(event.getType()==CuratorEventType.SET_DATA){

                        System.out.println("set path="+event.getPath()+",data="+new String(client.getData().forPath(event.getPath()))/*+",data="+new String(event.getData())*/);
                    }else if(event.getType()==CuratorEventType.DELETE){
                        System.out.println("delete path="+event.getPath());
                    }

                }});

接下来client的所有以inBackground()方式使用的API,其异步处理结果都是通过这个CuratorListener来处理。

在第二中方式inBackground(BackgroundCallback)中,如下:

client.create()
            .creatingParentsIfNeeded()
            .withProtection()
            .withMode(CreateMode.EPHEMERAL)
            .inBackground(new BackgroundCallback(){

                @Override
                public void processResult(CuratorFramework client, CuratorEvent event) throws Exception {
                    // TODO Auto-generated method stub
                  if(event.getType()==CuratorEventType.CREATE){
                      System.out.println("code:"+event.getResultCode()+"path:"+event.getPath()); 

                      //client.getData().inBackground().forPath(event.getPath());
                  }
                }
              } )
            .forPath("/francis/tmp/a","wbs".getBytes());
时间: 2024-10-21 14:34:13

Curator 异步获取结果的相关文章

通过Jquery异步获取股票实时数据

最近朋友让我帮他做个异步获取数据的程序,暂时服务器什么都没有,所以我就想先拿股票数据打个框架,方便后续开发和移植等事情 代码如下: <!-- 说明:股票看盘 作者:黑桃A 时间:2014-04-14 参考: http://www.lxway.com/240649562.htm http://www.lxway.com/946486042.htm http://www.365mini.com/page/jquery_getscript.htm http://blog.csdn.net/xxjoy_

Swift - 异步获取网络数据封装类

使用NSURLConnection.sendAsynchronousRequest()可以采用异步获取的方式取得数据.下面通过对数据获取类进行封装,演示如何进行数据请求与接收. 1,HttpController.swift (数据获取封装类,结果处理协议) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 import UIKit //自定义http协议 protocol HttpProto

获取WebBrowser全cookie 和 httpWebRequest 异步获取页面数据

获取WebBrowser全cookie [DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] static extern bool InternetGetCookieEx(string pchURL, string pchCookieName, StringBuilder pchCookieData, ref int pcchCookieData, int dwFlags, object lpRe

Validform和aui2.0结合使用的表单自定义验证提示和列表页异步获取数据Demo

二.添加自定义验证演示       Validform验证提示大多都是在输入框或下拉框的右边或下面.感觉就是不美观,特别是表单字段少的时候,这种在相应对象旁边的提示就没必要了,      它会给人一种不友好的感觉(只是自己的感觉).所以下面写了三种添加演示,希望大家能给出建议,以免下次用起来纠结,不知道用哪种好.        表单验证插件是我们经常使用的Validform_v5.3.2_min.js.先上添加1演示的表单验证js代码,这里我设置了点击提交按钮后才验证.其他添加演示的区别不大,详

JSON异步获取网络数据

//定义一个方法来获取网络数据,接受参数为网址 func onSearch(url: String){ //定义一个NSURL var nsUrl: NSURL = NSURL(string: url)! //定义一个NSURLRequest var request: NSURLRequest = NSURLRequest(URL: nsUrl) //异步获取数据 NSURLConnection.sendAsynchronousRequest(request, queue: NSOperatio

java 利用Future异步获取多线程任务结果

Future接口是Java标准API的一部分,在java.util.concurrent包中.Future接口是Java线程Future模式的实现,可以来进行异步计算. 有了Future就可以进行三段式的编程了,1.启动多线程任务2.处理其他事3.收集多线程任务结果.从而实现了非阻塞的任务调用.在途中遇到一个问题,那就是虽然能异步获取结果,但是Future的结果需要通过isdone来判断是否有结果,或者使用get()函数来阻塞式获取执行结果.这样就不能实时跟踪其他线程的结果状态了,所以直接使用g

netty客户端异步获取数据

源码见,下面主要是做个重要代码记录 http://download.csdn.net/detail/json20080301/8180351 NETTY客户端获取数据采用的方式是异步获取数据,不像socket你不知道服务端何时处理请求,何时能得到响应,即使得到响应也没法自动退出程序: 必须使用以下步骤: =================step 0.当然是发起异步连接操作,等待客户端链路关闭 //发起异步连接操作 ChannelFuture f = b.connect(this.host, t

MVC—实现ajax+mvc异步获取数据

之前写过ajax和一般处理程序的结合实现前后台的数据交换的博客,如今做系统用到了MVC,同一时候也用到了异步获取数据. ajax+一般处理程序与MVC+ajax原理是一样的在"URL"中前者写的一般处理程序的名字.而后者写到Controller中须要调用的方法. Controller中的设计 using System.Collections.Generic; using System.Web.Mvc; namespace mvcAjaxByAjax.Controllers { //考试

使用WebClient异步获取http资源

使用WebClient异步获取http资源: 方式一. public static async Task<string> GetStringAsync() { //System.Console.WriteLine(Thread.CurrentThread.Name + " 是否池化线程:" + Thread.CurrentThread.IsThreadPoolThread); System.Console.WriteLine("GetStringAsync is