@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)
Deprecated.
|
boolean |
stopThreadByUniqueName(String name)
Deprecated.
|
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.@Deprecated @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.@Deprecated @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.30 Release Date : February 17 2026