Package io.reactivex.netty.metrics

Examples of io.reactivex.netty.metrics.HttpClientMetricEventsListener


    @Test
    public void testPoolEvictions() throws InterruptedException {
        client = newHttpClient(1, 1000, null);
        final CountDownLatch latch = new CountDownLatch(1);
        HttpClientMetricEventsListener listener = new HttpClientMetricEventsListener() {
            @Override
            protected void onPooledConnectionEviction() {
                latch.countDown();
            }
        };
View Full Code Here

TOP

Related Classes of io.reactivex.netty.metrics.HttpClientMetricEventsListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.