org.infinispan.remoting.inboundhandler.Reply Maven / Gradle / Ivy
package org.infinispan.remoting.inboundhandler;
/**
* Interface responsible to send back the return value to the sender.
*
* @author Pedro Ruivo
* @since 7.1
*/
public interface Reply {
/**
* Sends back the return value to the sender.
*
* @param returnValue the return value
*/
void reply(Object returnValue);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy