| Package | Description |
|---|---|
| fish.payara.nucleus.exec |
| Modifier and Type | Method and Description |
|---|---|
<V extends Serializable> |
ClusterExecutionService.schedule(Callable<V> callable,
long delay,
TimeUnit unit)
Schedules a Callable object to be run in the future
|
<V extends Serializable> |
ClusterExecutionService.schedule(String memberUUID,
Callable<V> callable,
long delay,
TimeUnit unit)
Schedules a Callable object to be run in the future on the specified Member
|
ScheduledTaskFuture<? extends Serializable> |
ClusterExecutionService.scheduleAtFixedRate(Runnable runnable,
long delay,
long period,
TimeUnit unit)
Schedules a Callable object to be run in the future
|
ScheduledTaskFuture<?> |
ClusterExecutionService.scheduleAtFixedRate(String memberUUID,
Runnable runnable,
long delay,
long period,
TimeUnit unit)
Schedules a Callable object to be run in the future on the specified Member
|
| Modifier and Type | Method and Description |
|---|---|
<V extends Serializable> |
ClusterExecutionService.schedule(Collection<String> memberUUIDs,
Callable<V> callable,
long delay,
TimeUnit unit)
Schedules a Callable object to be run in the future on the specified Member
|
Map<String,ScheduledTaskFuture<?>> |
ClusterExecutionService.scheduleAtFixedRate(Collection<String> memberUUIDs,
Runnable runnable,
long delay,
long period,
TimeUnit unit)
Schedules a Callable object to be run in the future on the specified Member
|
Copyright © 2019. All rights reserved.