Package org.apache.camel.converter.stream

Examples of org.apache.camel.converter.stream.FileInputStreamCache


        getMockEndpoint("mock:middle").message(0).property(Exchange.EXCEPTION_CAUGHT).isInstanceOf(IllegalArgumentException.class);
        getMockEndpoint("mock:end").expectedMessageCount(1);
        getMockEndpoint("mock:end").message(0).property(Exchange.EXCEPTION_CAUGHT).isInstanceOf(IllegalArgumentException.class);
       
        File file = new File(TEST_FILE).getAbsoluteFile();
        FileInputStreamCache cache = new FileInputStreamCache(file);
       
        template.sendBody("direct:a", cache);

        assertMockEndpointsSatisfied();
       
View Full Code Here

TOP

Related Classes of org.apache.camel.converter.stream.FileInputStreamCache

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.