Examples of excludedContentType()


Examples of org.atmosphere.client.TrackMessageSizeInterceptor.excludedContentType()

    @Override
    public void init(ServletConfig sc) throws ServletException {
        super.init(sc);
        TrackMessageSizeInterceptor t = new TrackMessageSizeInterceptor();
        t.excludedContentType("application/javascript").excludedContentType("text/html").excludedContentType("text/plain").messageDelimiter("<->");
        t.configure(framework().getAtmosphereConfig());
        framework().interceptor(t);
        framework().interceptor(new SwaggerSocketProtocolInterceptor());
        logger.info("Swagger Socket installed {}", Version.getRawVersion());
    }
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.