Package org.glassfish.grizzly.http.server.util

Examples of org.glassfish.grizzly.http.server.util.HttpPipelineOptAddOn$PlugFilter


        networkListener.setTransactionTimeout(-1);
       
        // remove the features we don't need
        networkListener.registerAddOn(new SimplifyAddOn());
        // add HTTP pipeline optimization
        networkListener.registerAddOn(new HttpPipelineOptAddOn());
       
        // disable file-cache
        networkListener.getFileCache().setEnabled(false);
       
        httpServer.addListener(networkListener);
View Full Code Here

TOP

Related Classes of org.glassfish.grizzly.http.server.util.HttpPipelineOptAddOn$PlugFilter

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.