Package org.atmosphere.cpr

Examples of org.atmosphere.cpr.DefaultAsyncSupportResolver


    private static final Logger logger = LoggerFactory.getLogger(AsyncSupportServiceProcessor.class);

    @Override
    public void handle(AtmosphereFramework framework, Class<AsyncSupport> annotatedClass) {
        try {
            framework.setAsyncSupport(new DefaultAsyncSupportResolver(framework.getAtmosphereConfig()).newCometSupport(annotatedClass.getName()));
        } catch (Throwable e) {
            logger.warn("", e);
        }
    }
View Full Code Here

TOP

Related Classes of org.atmosphere.cpr.DefaultAsyncSupportResolver

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.