Package org.apache.wicket.atmosphere

Examples of org.apache.wicket.atmosphere.AtmosphereBehavior


    // remove any already installed AtmosphereBehaviors on the page
    List<AtmosphereBehavior> behaviors = page.getBehaviors(AtmosphereBehavior.class);
    page.remove(behaviors.toArray(new AtmosphereBehavior[behaviors.size()]));

    // install AtmosphereBehavior that doesn't use Meteor
    AtmosphereBehavior atmosphereBehavior = new TesterAtmosphereBehavior(wicketTester, eventBus);
    page.add(atmosphereBehavior);

    // start the page to collect all @Subscribe methods in the component hierarchy
    wicketTester.startPage(page);
View Full Code Here

TOP

Related Classes of org.apache.wicket.atmosphere.AtmosphereBehavior

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.