Package org.glassfish.tyrus.ext.extension.deflate

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

Related Classes of org.glassfish.tyrus.ext.extension.deflate.XWebkitDeflateExtension

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.