public void next()

in restful/src/main/java/org/apache/shardingsphere/elasticjob/restful/filter/DefaultFilterChain.java [53:64]


    public void next(final FullHttpRequest httpRequest) {
        Preconditions.checkState(!passedThrough && !replied, "FilterChain has already finished.");
        if (current < filters.length) {
            filters[current++].doFilter(httpRequest, handleContext.getHttpResponse(), this);
            if (!passedThrough && !replied) {
                doResponse();
            }
            return;
        }
        passedThrough = true;
        ctx.fireChannelRead(handleContext);
    }