Example usage for io.netty.channel CoalescingBufferQueue CoalescingBufferQueue

List of usage examples for io.netty.channel CoalescingBufferQueue CoalescingBufferQueue

Introduction

In this page you can find the example usage for io.netty.channel CoalescingBufferQueue CoalescingBufferQueue.

Prototype

public CoalescingBufferQueue(Channel channel) 

Source Link

Usage

From source file:org.apache.hadoop.hbase.security.CryptoAESWrapHandler.java

License:Apache License

@Override
public void handlerAdded(ChannelHandlerContext ctx) throws Exception {
    queue = new CoalescingBufferQueue(ctx.channel());
}