public FABChannelPipeline(FABChannel channel) { Contract.Requires(channel != null); this.channel = channel; this.tail = new TailContext(this); this.head = new HeadContext(this); this.head.Next = this.tail; this.tail.Prev = this.head; }
//public ChannelHandlerInvoker invoker() { // // return the unwrapped invoker. // return ((PausableChannelEventExecutor) eventLoop().asInvoker()).unwrapInvoker(); //} protected FABUnsafe(FABChannel channel) { this.channel = channel; this.outboundBuffer = new FABChannelOutboundBuffer(channel); }