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

io.quarkus.websockets.client.runtime.ExecutorSupplier Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy