Package | Description |
---|---|
pdp.compileplatform.execution | |
pdp.compileplatform.session |
Modifier and Type | Method and Description |
---|---|
TaskInterface |
TaskQueueInterface.getTask()
Get the most recent task from the queue
|
TaskInterface |
TaskQueue.getTask()
Get the oldest task in the queue
|
Modifier and Type | Method and Description |
---|---|
void |
TaskQueueInterface.addTask(TaskInterface task)
Add a task to the queue
|
void |
TaskQueue.addTask(TaskInterface task)
Add a task to the queue
|
void |
TaskQueueInterface.removeTask(TaskInterface task)
Remove a task from the queue
|
void |
TaskQueue.removeTask(TaskInterface task)
Remove a task from the queue.
|
Modifier and Type | Class and Description |
---|---|
class |
Task
A concrete implementation of the TaskInterface interface
|
Modifier and Type | Method and Description |
---|---|
TaskInterface |
TasksManagerInterface.getTaskById(int taskId)
Return the task corresponding to the id given
in parameter
|
TaskInterface |
TasksManager.getTaskById(int taskId)
Return the task corresponding to the id given
in parameter
|
TaskInterface |
ClientInterface.getTaskById(int idTask)
Return the task's id given in parameters
|
TaskInterface |
Client.getTaskById(int idTask)
Return the task's id given in parameters
|
Modifier and Type | Method and Description |
---|---|
void |
TasksManagerInterface.addTask(TaskInterface task)
add a task to the TaskManager
|
void |
TasksManager.addTask(TaskInterface task)
add a task to the TaskManager
|
void |
ClientInterface.addTask(TaskInterface task)
Add a task to the client's list of TaskInterface
|
void |
Client.addTask(TaskInterface task)
Add a task to the client's list of TaskInterface
|
int |
TasksManagerInterface.getTaskId(TaskInterface task)
Return the id of the task given as parameter
|
int |
TasksManager.getTaskId(TaskInterface task)
Return the id of the task given as parameter
|
int |
ClientInterface.getTaskId(TaskInterface task)
Return the id of the TaskInterface given in parameters
|
int |
Client.getTaskId(TaskInterface task)
Return the id of the TaskInterface given in parameters
|
void |
TasksManagerInterface.removeTask(TaskInterface task)
Remove a task from the TaskManager
|
void |
TasksManager.removeTask(TaskInterface task)
Remove a task from the TaskManager
|
void |
ClientInterface.removeTask(TaskInterface task)
Remove a task from the client's list of TaskInterface
|
void |
Client.removeTask(TaskInterface task)
Remove a task from the client's list of TaskInterface
|