private boolean updateBodyAndInterrupt( NettyResponseFuture<?> future, AsyncHandler<?> handler, HttpResponseBodyPart bodyPart) throws Exception { boolean interrupt = handler.onBodyPartReceived(bodyPart) != State.CONTINUE; if (interrupt) future.setKeepAlive(false); return interrupt; }
private final boolean updateBodyAndInterrupt( NettyResponseFuture<?> future, AsyncHandler<?> handler, HttpResponseBodyPart bodyPart) throws Exception { boolean state = handler.onBodyPartReceived(bodyPart) != STATE.CONTINUE; if (bodyPart.isUnderlyingConnectionToBeClosed()) { future.setKeepAlive(false); } return state; }