Package | Description |
---|---|
oracle.ucp.util |
Modifier and Type | Method and Description |
---|---|
<T> TaskHandle<T> |
UCPTaskManagerImpl.submitTask(Task<T> task)
Submits a task for execution.
|
<T> TaskHandle<T> |
TaskManager.submitTask(Task<T> task)
Submits one task for execution.
|
<T> TaskHandle<T> |
UCPTaskManagerImpl.submitToDedicatedThread(Task<T> task)
The method is used to submit critical tasks to the task manager, which
would need to be executed using dedicated threads instead of delegating it
to the thread pool.The tasks that have implemented the isCritical method
to return true will be executed here.
|
<T> TaskHandle<T> |
UCPTaskManagerImpl.submitToWTP(Task<T> task)
The method is used execute the tasks that can be given to the thread pool
for execution.The tasks that have implemented the isCritical method
to return false will be executed using this method.
|
Copyright © 2008, 2017, Oracle. All rights reserved.