Package net.solosky.maplefetion.net

Examples of net.solosky.maplefetion.net.TransferService


    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);                              //传输对象
   
    this.processorChain.startProcessorChain();
  }
View Full Code Here


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

TOP

Related Classes of net.solosky.maplefetion.net.TransferService

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.