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

org.jgroups.blocks.AsyncRequestHandler Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote Jakarta Enterprise Beans and Jakarta Messaging, including all dependencies. It is intended for use by those not using maven, maven users should just import the Jakarta Enterprise Beans and Jakarta Messaging BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 35.0.0.Beta1
Show newest version
package org.jgroups.blocks;

import org.jgroups.Message;

/**
 * Provides a way to invoke requests asynchronously
 * @author Bela Ban
 * @since  3.3
 * @todo Move into {@link RequestHandler} in 4.0
 */
public interface AsyncRequestHandler extends RequestHandler {

    /**
     * Invokes a request. This should be done asynchronously, e.g. by dispatching this to a thread pool.
     * When done, if a response is needed (e.g. in case of a sync RPC), {@link Response#send(Object,boolean)} should
     * be called.
     * @param request The request
     * @param response The response implementation. Contains information needed to send the reply (e.g. a request ID).
     *                 If no response is required, e.g. because this is an asynchronous RPC, then response will be null.
     * @throws Exception If an exception is thrown (e.g. in case of an issue submitting the request to a thread pool,
     * the exception will be taken as return value and will be sent as a response. In this case,
     * {@link Response#send(Object,boolean)} must not be called
     */
    void handle(Message request, Response response) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy