Package net.solosky.maplefetion.client.dispatcher

Examples of net.solosky.maplefetion.client.dispatcher.LiveV2MessageDispatcher


   */
  private void buildProcessorChain(Transfer transfer) throws FetionException
  {

    this.processorChain = new ProcessorChain();
    this.processorChain.addLast(new LiveV2MessageDispatcher(context, this, this));         // 消息分发服务
    if(FetionConfig.getBoolean("log.sipc.enable"))
      this.processorChain.addLast(new SipcLogger("LiveV2ChatDialog-" + mainBuddy.getFetionId()));                 // 日志记录
    this.processorChain.addLast(new TransferService(this.context));                           // 传输服务
    this.processorChain.addLast(new SipcParser());                          //信令解析器
    this.processorChain.addLast(transfer);                              //传输对象
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.client.dispatcher.LiveV2MessageDispatcher

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.