/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.camel; /** * An <b>asynchronous</b> processor which can process an {@link Exchange} in an asynchronous fashion * and signal completion by invoking the {@link AsyncCallback}. * <p/> * Any processor can be coerced to have an {@link AsyncProcessor} interface by using the * {@link org.apache.camel.impl.converter.AsyncProcessorTypeConverter#convert AsyncProcessorTypeConverter.covert} * method. * * @version */ public interface AsyncProcessor extends Processor { /** * Processes the message exchange. * Similar to {@link Processor#process}, but the caller supports having the exchange asynchronously processed. * <p/> * If there was a failure processing then the caused {@link Exception} would be set on the {@link Exchange}. * * @param exchange the message exchange * @param callback the {@link AsyncCallback} will be invoked when the processing of the exchange is completed. * If the exchange is completed synchronously, then the callback is also invoked synchronously. * The callback should therefore be careful of starting recursive loop. * @return (doneSync) <tt>true</tt> to continue execute synchronously, <tt>false</tt> to continue being executed asynchronously */ boolean process(Exchange exchange, AsyncCallback callback); }