Package org.apache.camel.rx.support

Examples of org.apache.camel.rx.support.ExchangeToBodyFunc1


*/
public abstract class ObservableBody<T> extends ObservableProcessor<T> {
    private final Class<T> bodyType;

    public ObservableBody(Class<T> bodyType) {
        super(new ExchangeToBodyFunc1(bodyType));
        this.bodyType = bodyType;
    }
View Full Code Here


*/
public abstract class ObservableBody<T> extends ObservableProcessor<T> {
    private final Class<T> bodyType;

    public ObservableBody(Class<T> bodyType) {
        super(new ExchangeToBodyFunc1(bodyType));
        this.bodyType = bodyType;
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.rx.support.ExchangeToBodyFunc1

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.