Uses of Interface
org.apache.commons.lang3.ThreadUtils.ThreadPredicate
-
Packages that use ThreadUtils.ThreadPredicate Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.lang
classes. -
-
Uses of ThreadUtils.ThreadPredicate in org.apache.commons.lang3
Classes in org.apache.commons.lang3 that implement ThreadUtils.ThreadPredicate Modifier and Type Class Description static class
ThreadUtils.NamePredicate
A predicate implementation which matches a thread or threadgroup name.static class
ThreadUtils.ThreadIdPredicate
A predicate implementation which matches a thread id.Methods in org.apache.commons.lang3 with parameters of type ThreadUtils.ThreadPredicate Modifier and Type Method Description static java.util.Collection<java.lang.Thread>
ThreadUtils. findThreads(java.lang.ThreadGroup group, boolean recurse, ThreadUtils.ThreadPredicate predicate)
Select all active threads which match the given predicate and which belongs to the given thread group (or one of its subgroups).static java.util.Collection<java.lang.Thread>
ThreadUtils. findThreads(ThreadUtils.ThreadPredicate predicate)
Select all active threads which match the given predicate.
-