List of usage examples for io.netty.buffer EmptyByteBuf isReadable
@Override public boolean isReadable()
From source file:io.netty.buffer.EmptyByteBufTest.java
License:Apache License
@Test public void testIsReadable() { EmptyByteBuf empty = new EmptyByteBuf(UnpooledByteBufAllocator.DEFAULT); Assert.assertFalse(empty.isReadable()); Assert.assertFalse(empty.isReadable(1)); }