All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.AsyncProcessor Maven / Gradle / Ivy

The newest version!
/*
 * 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;

import java.util.concurrent.CompletableFuture;

/**
 * An asynchronous processor which can process an {@link Exchange} in an asynchronous fashion and signal
 * completion by invoking the {@link AsyncCallback}.
 * 

* Any processor can be coerced to have an {@link AsyncProcessor} interface by using the * {@link org.apache.camel.support.AsyncProcessorConverterHelper#convert AsyncProcessorConverterHelper.convert} method. */ public interface AsyncProcessor extends Processor { /** * Processes the message exchange. Similar to {@link Processor#process}, but the caller supports having the exchange * asynchronously processed. *

* 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) true to continue execute synchronously, false to continue being * executed asynchronously */ boolean process(Exchange exchange, AsyncCallback callback); CompletableFuture processAsync(Exchange exchange); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy