if (isBroken) {
// if content is broken - we're not able to distinguish
// the end of the message - so stop processing any input data on
// this connection (connection is being closed by
// {@link org.glassfish.grizzly.http.HttpServerFilter#handleEvent(...)}
final NextAction suspendNextAction = ctx.getSuspendAction();
ctx.completeAndRecycle();
return suspendNextAction;
}
return ctx.getStopAction();