* Other protocols can use a faster static channel pipeline directly.
*/
ChannelPipeline pipeline;
if(protocolManager.isSupportsWebsockets(protocol))
{
pipeline = new DefaultChannelPipeline();
for (Entry<String, ChannelHandler> handler : handlers.entrySet())
{
pipeline.addLast(handler.getKey(), handler.getValue());
}
}