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