Examples of XWebkitDeflateExtension


Examples of org.glassfish.tyrus.ext.extension.deflate.XWebkitDeflateExtension

*/
public class AutobahnApplicationConfig implements ServerApplicationConfig {
    @Override
    public Set<ServerEndpointConfig> getEndpointConfigs(Set<Class<? extends Endpoint>> endpointClasses) {
        final ServerEndpointConfig serverEndpointConfig = ServerEndpointConfig.Builder.create(EchoServer.class, "/echo")
                .extensions(Arrays.<Extension>asList(new PerMessageDeflateExtension(), new XWebkitDeflateExtension())).build();

        return new HashSet<ServerEndpointConfig>() {{
            add(serverEndpointConfig);
        }};
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.