com.github.sseserver.remote.RemoteCompletableFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sse-server Show documentation
Show all versions of sse-server Show documentation
Sse server for Spring Boot
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;
}
}