| Package | Description |
|---|---|
| org.jrebirth.af.core.service |
Provides base classes for JRebirth Service layer.
|
| org.jrebirth.af.core.service.basic |
Services used to manage Stage.
|
| org.jrebirth.af.core.wave |
Provides all Wave related classes.
|
| Modifier and Type | Field and Description |
|---|---|
private ObservableMap<String,ServiceTask<?>> |
AbstractService.pendingTasks
The map that stores pending tasks, useful to access to Worker implementation.
|
| Modifier and Type | Method and Description |
|---|---|
ServiceTask<?> |
AbstractService.getPendingTask(String taskKey)
Retrieve a task from the pending list.
|
ServiceTask<?> |
Service.getPendingTask(String taskKey)
Retrieve a task from the pending list.
|
<T> ServiceTask<T> |
AbstractService.returnData(Wave sourceWave)
Do a specific action by processing the wave.
|
<T> ServiceTask<T> |
Service.returnData(Wave wave)
Do a specific action by processing the wave.
|
private <T> ServiceTask<T> |
AbstractService.runTask(Wave sourceWave,
Method method,
Object[] parameterValues)
Run the wave type method.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<ServiceTask<?>> |
AbstractService.getPendingTaskList()
Get pending task list.
|
Collection<ServiceTask<?>> |
Service.getPendingTaskList()
Get pending task list.
|
ObservableMap<String,ServiceTask<?>> |
AbstractService.pendingTasksProperty()
Return The Pending tasks map.
|
ObservableMap<String,ServiceTask<?>> |
Service.pendingTasksProperty()
Return The Pending tasks map.
|
| Modifier and Type | Method and Description |
|---|---|
private void |
AbstractService.bindMessage(ServiceTask<?> task,
StringProperty messageProperty)
Bind a task to a string property that will display the task message.
|
private void |
AbstractService.bindProgressBar(ServiceTask<?> task,
ProgressBar progressBar)
Bind a task to a progress bar widget to follow its progression.
|
private void |
AbstractService.bindTitle(ServiceTask<?> task,
StringProperty titleProperty)
Bind a task to a string property that will display the task title.
|
| Modifier and Type | Field and Description |
|---|---|
private ObservableList<ServiceTask<?>> |
TaskTrackerService.serviceTasks
The list of all running service tasks.
|
| Modifier and Type | Method and Description |
|---|---|
ObservableList<ServiceTask<?>> |
TaskTrackerService.getServiceTasks() |
| Modifier and Type | Method and Description |
|---|---|
void |
TaskTrackerService.trackTask(ServiceTask<?> task)
Track a task progression.
|
| Modifier and Type | Field and Description |
|---|---|
static WaveItem<ServiceTask<?>> |
JRebirthWaves.SERVICE_TASK
This wave item will be used only into a WaveData to pass the current Service task handled by the wave.
|
Copyright © 2011–2014 JRebirth OSS. All rights reserved.