io.quarkus.websockets.client.runtime.ExecutorSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-websockets-client Show documentation
Show all versions of quarkus-websockets-client Show documentation
Client for WebSocket communication channel
package io.quarkus.websockets.client.runtime;
import java.util.concurrent.Executor;
import java.util.function.Supplier;
public class ExecutorSupplier implements Supplier {
static volatile Executor executor;
@Override
public Executor get() {
return executor;
}
}