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

org.enodeframework.queue.ISendReplyService Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package org.enodeframework.queue;

import org.enodeframework.commanding.CommandResult;
import org.enodeframework.common.io.ReplySocketAddress;
import org.enodeframework.queue.domainevent.DomainEventHandledMessage;

import java.util.concurrent.CompletableFuture;

public interface ISendReplyService {
    CompletableFuture sendCommandReply(CommandResult replyData, ReplySocketAddress replyAddress);

    CompletableFuture sendEventReply(DomainEventHandledMessage replyData, ReplySocketAddress replyAddress);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy