Example usage for org.apache.wicket.ajax AbstractAjaxTimerBehavior subclass-usage

List of usage examples for org.apache.wicket.ajax AbstractAjaxTimerBehavior subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.ajax AbstractAjaxTimerBehavior subclass-usage.

Usage

From source file com.evolveum.midpoint.web.component.refresh.RemovableAjaxTimerBehavior.java

/**
 * EXPERIMENTAL. (Working with these timers is very tricky. What we really need is flexible re-scheduling of these timers.)
 *
 * @author mederly
 */
public abstract class RemovableAjaxTimerBehavior extends AbstractAjaxTimerBehavior {

From source file com.evolveum.midpoint.web.component.util.FutureUpdateBehavior.java

/**
 * @author lazyman
 */
public abstract class FutureUpdateBehavior<T> extends AbstractAjaxTimerBehavior {

    private static final Trace LOGGER = TraceManager.getTrace(FutureUpdateBehavior.class);

From source file com.romeikat.datamessie.core.base.ui.behavior.FutureUpdateBehavior.java

public abstract class FutureUpdateBehavior<T> extends AbstractAjaxTimerBehavior {

    private static final long serialVersionUID = 1L;

    private static final Logger LOG = LoggerFactory.getLogger(FutureUpdateBehavior.class);

From source file name.martingeisse.wicket.util.KeepSessionAliveBehavior.java

/**
 * Attaching this behavior to a component results in AJAX calls being made every 10 minutes
 * (or a user-defined interval) to keep the server-side session alive.
 */
public class KeepSessionAliveBehavior extends AbstractAjaxTimerBehavior {

From source file org.apache.openmeetings.web.room.OmRedirectTimerBehavior.java

public abstract class OmRedirectTimerBehavior extends AbstractAjaxTimerBehavior {
    private static final long serialVersionUID = 1L;
    private final long clock;
    private final int delay;
    private final String labelId;

From source file org.apache.syncope.client.console.wicket.ajax.IndicatorAjaxTimerBehavior.java

/**
 * An {@link AbstractAjaxTimerBehavior} not showing veil.
 */
public abstract class IndicatorAjaxTimerBehavior extends AbstractAjaxTimerBehavior implements IAjaxIndicatorAware {

    private static final long serialVersionUID = 8863750325559215077L;

From source file org.planningpoker.wicket.behaviours.ajax.timer.AjaxSelfUpdatingTimerBehavior.java

/**
 * AJAX behavior for doing scheduled, repeating updates.
 */
public class AjaxSelfUpdatingTimerBehavior extends AbstractAjaxTimerBehavior {
    private static final long serialVersionUID = 1L;

From source file org.wicketstuff.chat.channel.TimerChannelBehavior.java

/**
 * Behavior used to enqueue triggers and send them to the client using timer
 * based polling.
 * <p>
 * The polling interval is configured in the constructor. The more frequent is
 * the polling, the more quickly your client will be updated, but also the more

From source file org.wicketstuff.dojo11.AbstractDojoTimerBehavior.java

/**
 * Dojo Ajax auto update handler. <br/>
 * Bind this handler to any component implementing IUpdatable.<br/>
 * Every <i>interval</i> the bound component's update() method will be called<br/>
 * followed by a rerender of the bound component.<br/>
 * 

From source file org.wicketstuff.minis.behavior.KeepAliveBehavior.java

public class KeepAliveBehavior extends AbstractAjaxTimerBehavior {
    private static final long serialVersionUID = 1L;

    public KeepAliveBehavior() {
        super(Duration.minutes(10));
    }