@MXBeanDescription(value="MBean that provides ability to terminate worker that registered in the workers registry.") public interface WorkersControlMXBean
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getWorkerNames()
Returns names of all registered workers.
|
boolean |
stopThreadById(long id)
Stops thread by
id, if exists. |
boolean |
stopThreadByUniqueName(String name)
Stops thread by
name, if exists and unique. |
boolean |
terminateWorker(String name)
Terminates worker.
|
@MXBeanDescription(value="Names of registered workers.") List<String> getWorkerNames()
@MXBeanDescription(value="Terminates worker.") boolean terminateWorker(@MXBeanParameter(name="name",description="Name of worker to terminate.") String name)
name - Worker name.True if worker has been terminated successfully, false otherwise.@MXBeanDescription(value="Stops thread by unique name.") boolean stopThreadByUniqueName(@MXBeanParameter(name="name",description="Name of thread to stop.") String name)
name, if exists and unique.name - Thread name.True if thread has been stopped successfully, false otherwise.@MXBeanDescription(value="Stops thread by id.") boolean stopThreadById(@MXBeanParameter(name="id",description="Id of thread to stop.") long id)
id, if exists.id - Thread id.True if thread has been stopped successfully, false otherwise.
GridGain In-Memory Computing Platform : ver. 8.9.26 Release Date : October 16 2025