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

org.infinispan.remoting.inboundhandler.Reply Maven / Gradle / Ivy

package org.infinispan.remoting.inboundhandler;

import org.infinispan.remoting.responses.Response;

/**
 * Interface responsible to send back the return value to the sender.
 *
 * @author Pedro Ruivo
 * @since 7.1
 */
public interface Reply {

   Reply NO_OP = returnValue -> {};

   /**
    * Sends back the return value to the sender.
    *
    * @param response the return value
    */
   void reply(Response response);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy