dubbo-rpc-extensions/dubbo-rpc-rest/src/main/java/org/apache/dubbo/rpc/protocol/rest/extension/resteasy/intercept/DubboServerWriterInterceptorContext.java [63:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void proceed() throws IOException, WebApplicationException {
        logger.debug("Dubbo server writer intercept  context: " + getClass().getName() + "  Method : proceed");

        if (interceptors == null || index >= interceptors.length) {
            return;
        } else {

            logger.debug("Dubbo server writer intercept  context WriterInterceptor: "
                    + interceptors[index].getClass().getName());
            interceptors[index++].aroundWriteTo(this);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dubbo-rpc-extensions/dubbo-rpc-rest/src/main/java/org/apache/dubbo/rpc/protocol/rest/resteasy/intercept/DubboServerWriterInterceptorContext.java [63:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void proceed() throws IOException, WebApplicationException {
        logger.debug("Dubbo server writer intercept  context: " + getClass().getName() + "  Method : proceed");

        if (interceptors == null || index >= interceptors.length) {
            return;
        } else {

            logger.debug("Dubbo server writer intercept  context WriterInterceptor: "
                    + interceptors[index].getClass().getName());
            interceptors[index++].aroundWriteTo(this);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



