* @throws TransferException
*/
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()); //信令解析器