org.enodeframework.messaging.IMessageHandlerProxy2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.messaging;
import org.enodeframework.infrastructure.IObjectProxy;
import org.enodeframework.infrastructure.MethodInvocation;
import java.util.concurrent.CompletableFuture;
public interface IMessageHandlerProxy2 extends IObjectProxy, MethodInvocation {
CompletableFuture handleAsync(IMessage message1, IMessage message2);
}