Uses of Interface
org.jgroups.util.ThreadFactory
-
Packages that use ThreadFactory Package Description org.jgroups.blocks Provides building blocks that are layered on top of channels.org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.stack Support for managing protocol stacks.org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of ThreadFactory in org.jgroups.blocks
Methods in org.jgroups.blocks that return ThreadFactory Modifier and Type Method Description ThreadFactoryBasicConnectionTable. getThreadFactory()Methods in org.jgroups.blocks with parameters of type ThreadFactory Modifier and Type Method Description voidBasicConnectionTable. setThreadFactory(ThreadFactory factory) -
Uses of ThreadFactory in org.jgroups.protocols
Fields in org.jgroups.protocols declared as ThreadFactory Modifier and Type Field Description protected ThreadFactoryTP. global_thread_factoryUsed by all threads created by JGroups outside of the thread poolsprotected ThreadFactoryTP. timer_thread_factoryMethods in org.jgroups.protocols that return ThreadFactory Modifier and Type Method Description ThreadFactoryTP. getDefaultThreadPoolThreadFactory()ThreadFactoryTP. getOOBThreadPoolThreadFactory()ThreadFactoryTP. getThreadFactory()ThreadFactoryTP.ProtocolAdapter. getThreadFactory()ThreadFactoryTP. getTimerThreadFactory()Methods in org.jgroups.protocols with parameters of type ThreadFactory Modifier and Type Method Description protected static java.util.concurrent.ExecutorServiceTP. createThreadPool(int min_threads, int max_threads, long keep_alive_time, java.lang.String rejection_policy, java.util.concurrent.BlockingQueue<java.lang.Runnable> queue, ThreadFactory factory)voidTP. setDefaultThreadPoolThreadFactory(ThreadFactory factory)voidTP. setOOBThreadPoolThreadFactory(ThreadFactory factory)voidTP. setThreadFactory(ThreadFactory factory)voidTP. setTimerThreadFactory(ThreadFactory factory) -
Uses of ThreadFactory in org.jgroups.stack
Fields in org.jgroups.stack declared as ThreadFactory Modifier and Type Field Description protected ThreadFactoryGossipRouter. default_thread_factoryMethods in org.jgroups.stack that return ThreadFactory Modifier and Type Method Description ThreadFactoryGossipRouter. getDefaultThreadPoolThreadFactory()ThreadFactoryProtocol. getThreadFactory()Supposed to be overwritten by subclasses.ThreadFactoryProtocolStack. getThreadFactory()Deprecated.UseProtocol.getThreadFactory()insteadstatic ThreadFactoryProtocolStack. getTimerThreadFactory()Deprecated.Methods in org.jgroups.stack with parameters of type ThreadFactory Modifier and Type Method Description protected java.util.concurrent.ExecutorServiceGossipRouter. createThreadPool(int min_threads, int max_threads, long keep_alive_time, java.lang.String rejection_policy, java.util.concurrent.BlockingQueue<java.lang.Runnable> queue, ThreadFactory factory)voidGossipRouter. setDefaultThreadPoolThreadFactory(ThreadFactory factory)voidProtocolStack. setThreadFactory(ThreadFactory f)Deprecated.UseProtocol.getThreadFactory()insteadstatic voidProtocolStack. setTimerThreadFactory(ThreadFactory f)Deprecated. -
Uses of ThreadFactory in org.jgroups.util
Classes in org.jgroups.util that implement ThreadFactory Modifier and Type Class Description classDefaultThreadFactoryThread factory mainly responsible for naming of threads.classLazyThreadFactoryLazily names threads: whenever the address or cluster name is changed, all threads are renamedConstructors in org.jgroups.util with parameters of type ThreadFactory Constructor Description TimeScheduler(ThreadFactory factory)TimeScheduler(ThreadFactory factory, int max_threads)
-