Searched refs:objectCaptor (Results 1 – 1 of 1) sorted by relevance
350 ArgumentCaptor<Object> objectCaptor = ArgumentCaptor.forClass(Object.class); in httpProxy_completes() local352 .channelRead(any(ChannelHandlerContext.class), objectCaptor.capture()); in httpProxy_completes()353 ByteBuf b = (ByteBuf) objectCaptor.getValue(); in httpProxy_completes()365 objectCaptor.getAllValues().clear(); in httpProxy_completes()367 .channelRead(any(ChannelHandlerContext.class), objectCaptor.capture()); in httpProxy_completes()368 b = (ByteBuf) objectCaptor.getAllValues().get(1); in httpProxy_completes()414 ArgumentCaptor<Object> objectCaptor = ArgumentCaptor.forClass(Object.class); in httpProxy_500() local416 .channelRead(any(ChannelHandlerContext.class), objectCaptor.capture()); in httpProxy_500()417 ByteBuf request = (ByteBuf) objectCaptor.getValue(); in httpProxy_500()