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

io.jaspercloud.react.http.client.HttpConnectionPool Maven / Gradle / Ivy

package io.jaspercloud.react.http.client;

import io.jaspercloud.react.mono.AsyncMono;

public interface HttpConnectionPool {

    AsyncMono acquire(String host, int port, long timeout);

    void release(HttpConnection connection);

    interface HttpConnectionCreate {

        HttpConnection create();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy