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

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

package com.github.sseserver.remote;

import com.github.sseserver.util.CompletableFuture;

public class RemoteCompletableFuture extends CompletableFuture {
    private CLIENT client;

    public CLIENT getClient() {
        return client;
    }

    public void setClient(CLIENT client) {
        this.client = client;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy