Package org.wildfly.mod_cluster.undertow.metric

Examples of org.wildfly.mod_cluster.undertow.metric.BytesSentHttpHandler


        // Bytes Sent wrapping
        if (isMetricEnabled(SendTrafficLoadMetric.class)) {
            deploymentUnit.addToAttachmentList(UndertowAttachments.UNDERTOW_INITIAL_HANDLER_CHAIN_WRAPPERS, new HandlerWrapper() {
                @Override
                public HttpHandler wrap(final HttpHandler handler) {
                    return new BytesSentHttpHandler(handler);
                }
            });
        }

        // Bytes Received wrapping
View Full Code Here

TOP

Related Classes of org.wildfly.mod_cluster.undertow.metric.BytesSentHttpHandler

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.