Class AtmosphereFramework

java.lang.Object
org.atmosphere.cpr.AtmosphereFramework

public class AtmosphereFramework extends Object
The AtmosphereFramework is the entry point for the framework. This class can be used to from Servlet/filter to dispatch AtmosphereRequest and AtmosphereResponse. The framework can also be configured using the setXXX method. The life cycle of this class is
 AtmosphereFramework f = new AtmosphereFramework();
 f.init();
 f.doCometSupport(AtmosphereRequest, AtmosphereResource);
 f.destroy();
 
Author:
Jeanfrancois Arcand