Class AjaxChannel

java.lang.Object
org.apache.wicket.ajax.AjaxChannel
All Implemented Interfaces:
Serializable, IClusterable

public class AjaxChannel extends Object implements IClusterable
A Channel used to define how Ajax requests are processed at the client side. Channels are either:
  • queueing - Ajax requests are kept in a Queue at the client side and processed one at a time. Default.
  • dropping - only the last Ajax request is processed, all previously scheduled requests are discarded
  • active - discards any Ajax requests if there is a running Ajax request on the same channel
Author:
Martin Dilger
See Also: