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

eu.lucaventuri.fibry.MessageWithAnswer Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package eu.lucaventuri.fibry;

import java.util.concurrent.CompletableFuture;

/** Message that is supposed to get an answer at some point */
public class MessageWithAnswer {
    public final T message;
    public final CompletableFuture answer = new CompletableFuture<>();

    public MessageWithAnswer(T message) {
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy