Package com.alibaba.citrus.service.pipeline.valve

Examples of com.alibaba.citrus.service.pipeline.valve.LogAndReturnValve


        }
    }

    @Test
    public void invoke_simpleReturn() {
        pipeline = createPipeline(new LogValve(), new LogAndReturnValve(), new LogValve());

        // invoke
        PipelineInvocationHandle handle = pipeline.newInvocation();
        handle.invoke();
        assertFalse(handle.isBroken());
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.pipeline.valve.LogAndReturnValve

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.