| Interface | Description |
|---|---|
| EventStoreListener |
Listener to add in EventStore.
|
| IChannelListener |
Implementations of this interface can be notified of events triggered by a
IChannelPublisher
Implementation example:
channelService.addChannelListener(this, "channel", new IChannelListener()
{
public void onEvent(String channel, Map datas, IChannelTarget target)
{
target.addComponent(aComponent);
}
});
|
| IChannelPublisher |
A class allowing the server to send an event on listener.
|
| IChannelService |
A service providing channel based communication facility in wicket based applications.
|
| IChannelTarget |
Defines an interface to trigger client updates on server side events.
|
| IPushTarget |
A target used to push events to a client.
|
| Class | Description |
|---|---|
| ChannelEvent |
A event containing data to send by server pushing.
|
Copyright © 2015 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.