Package org.jboss.netty.handler.codec.rtsp

Examples of org.jboss.netty.handler.codec.rtsp.RtspResponseEncoder


  @Override
  public ChannelPipeline getPipeline() throws Exception {
    ChannelPipeline pipeline = pipeline();

    pipeline.addLast("decoder", new RtspRequestDecoder());
    pipeline.addLast("encoder", new RtspResponseEncoder());
    pipeline.addLast("handler", new RtspRequestHandler());
    return pipeline;
  }
View Full Code Here

TOP

Related Classes of org.jboss.netty.handler.codec.rtsp.RtspResponseEncoder

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.