Package iqq.im.actor

Examples of iqq.im.actor.ThreadActorDispatcher


public class WebQQClientTest {
 
  QQClient client;
 
  public WebQQClientTest(String user, String pwd){
    client = new WebQQClient(user,pwd, new QQNotifyHandlerProxy(this), new ThreadActorDispatcher());
  }
View Full Code Here


            // TODO Auto-generated catch block
            e.printStackTrace();
          }
        }
      }
    }, new ThreadActorDispatcher());
   
    //测试同步模式登录
    QQActionFuture future = client.login(QQStatus.ONLINE, null);
    QQActionEvent event = future.waitFinalEvent();
    if(event.getType() == Type.EVT_OK){
View Full Code Here

TOP

Related Classes of iqq.im.actor.ThreadActorDispatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.