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

org.asynchttpclient.netty.NettyAsyncHttpProvider Maven / Gradle / Ivy

package org.asynchttpclient.netty;

import org.asynchttpclient.AsyncHandler;
import org.asynchttpclient.AsyncHttpClientConfig;
import org.asynchttpclient.AsyncHttpProvider;
import org.asynchttpclient.ListenableFuture;
import org.asynchttpclient.Request;

public class NettyAsyncHttpProvider implements AsyncHttpProvider {

    public NettyAsyncHttpProvider(AsyncHttpClientConfig config) {
        throw new UnsupportedOperationException("This implementation is just a stub");
    }
    
    @Override
    public  ListenableFuture execute(Request request, AsyncHandler handler) {
        throw new UnsupportedOperationException("This implementation is just a stub");
    }

    @Override
    public void close() {
        throw new UnsupportedOperationException("This implementation is just a stub");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy