349350351352353354355356357358359
private static class RecyclingBufferAvailableAnswer implements Answer<Void> { @Override public Void answer(InvocationOnMock invocation) throws Throwable { Buffer buffer = (Buffer) invocation.getArguments()[0]; buffer.recycleBuffer(); return null; } }