Package org.apache.camel

Examples of org.apache.camel.ThreadPoolRejectedPolicy


    /**
     * @param rejectedPolicy the rejectedPolicy to set
     */
    public void setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy) {
        ThreadPoolRejectedPolicy oldValue = this.rejectedPolicy;
        this.rejectedPolicy = rejectedPolicy;
        if (!isSame(oldValue, rejectedPolicy)) {
            firePropertyChange(PROPERTY_REJECTEDPOLICY, oldValue, rejectedPolicy);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.ThreadPoolRejectedPolicy

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.