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

com.github.sseserver.remote.ClusterCompletableFuture Maven / Gradle / Ivy

package com.github.sseserver.remote;

import com.github.sseserver.util.CompletableFuture;

import java.net.URL;
import java.util.List;

public class ClusterCompletableFuture extends CompletableFuture {
    private final List fromRemoteUrlList;
    private final CLIENT client;

    public ClusterCompletableFuture(List fromRemoteUrlList, CLIENT client) {
        this.fromRemoteUrlList = fromRemoteUrlList;
        this.client = client;
    }

    public List getFromRemoteUrlList() {
        return fromRemoteUrlList;
    }

    public CLIENT getClient() {
        return client;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy