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 org.wicketstuff.misc.behaviors.KeepAliveBehavior.java

@SuppressWarnings("serial")
public class KeepAliveBehavior extends AbstractAjaxTimerBehavior {
    public KeepAliveBehavior() {
        super(Duration.minutes(10));
    }

From source file org.wicketstuff.push.timer.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.push.timer.TimerPushBehavior.java

/**
 * @author <a href="http://sebthom.de/">Sebastian Thomschke</a>
 */
@SuppressWarnings({ "rawtypes", "unchecked" })
public class TimerPushBehavior extends AbstractAjaxTimerBehavior {
    private static final long serialVersionUID = 1L;

From source file org.wicketstuff.table.column.ColumnTimingBehavior.java

/**
 * Timing behavior that updates every component on columnCells list.
 * 
 * @author Pedro Henrique Oliveira dos Santos
 * 
 */