Package | Description |
---|---|
org.jboss.errai.bus.client.api.builder | |
org.jboss.errai.bus.server |
The server-side components of ErraiBus.
|
org.jboss.errai.bus.server.async | |
org.jboss.errai.bus.server.async.scheduling | |
org.jboss.errai.common.client.api.tasks |
Modifier and Type | Method and Description |
---|---|
AsyncTask |
MessageReplySendable.replyDelayed(TimeUnit unit,
int interval) |
AsyncTask |
MessageReplySendable.replyRepeating(TimeUnit unit,
int interval) |
AsyncTask |
MessageBuildSendableDispatcher.sendDelayedWith(RequestDispatcher viaThis,
TimeUnit unit,
int interval)
Sends the message after a specified delay with the specified
RequestDispatcher.
|
AsyncTask |
MessageBuildSendableDispatcher.sendRepeatingWith(RequestDispatcher viaThis,
TimeUnit unit,
int interval)
Sends the message periodically with the specified
RequestDispatcher.
|
Modifier and Type | Method and Description |
---|---|
AsyncTask |
DefaultTaskManager.schedule(TimeUnit unit,
int interval,
Runnable task) |
AsyncTask |
DefaultTaskManager.scheduleRepeating(TimeUnit unit,
int interval,
Runnable task) |
Modifier and Type | Class and Description |
---|---|
class |
TimedTask
A TimedTask is used for scheduling tasks, and making sure they are run at appropriate times and intervals
|
Modifier and Type | Method and Description |
---|---|
AsyncTask |
PooledExecutorService.schedule(Runnable runnable,
TimeUnit unit,
long interval) |
AsyncTask |
PooledExecutorService.scheduleRepeating(Runnable runnable,
TimeUnit unit,
long initial,
long interval) |
Modifier and Type | Method and Description |
---|---|
AsyncTask |
HasAsyncTaskRef.getAsyncTask()
Returns the AsyncTask instance most recently set in
HasAsyncTaskRef.setAsyncTask(AsyncTask) , or null if setAsyncTask() has not
been called yet. |
AsyncTask |
TaskManager.schedule(TimeUnit unit,
int interval,
Runnable task)
Schedules the given task for execution at a later time.
|
AsyncTask |
ClientTaskManager.schedule(TimeUnit unit,
int interval,
Runnable userTask) |
AsyncTask |
TaskManager.scheduleRepeating(TimeUnit unit,
int interval,
Runnable task)
Schedules the given task for repeated execution at the given rate.
|
AsyncTask |
ClientTaskManager.scheduleRepeating(TimeUnit unit,
int interval,
Runnable userTask) |
Modifier and Type | Method and Description |
---|---|
void |
HasAsyncTaskRef.setAsyncTask(AsyncTask task)
Called by Errai scheduler services when they receive this Runnable and
before its run() method is called.
|
Copyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.