Class ThreadFactoryBuilderImpl.ThreadFactoryImpl

java.lang.Object
org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl.ThreadFactoryImpl
All Implemented Interfaces:
ThreadFactory
Enclosing class:
ThreadFactoryBuilderImpl

@ClassVersion(sourceVersion="$Id: ThreadFactoryBuilderImpl.java 1118 2024-03-15 16:14:15Z tquadrat $") @API(status=INTERNAL, since="0.1.0") private static final class ThreadFactoryBuilderImpl.ThreadFactoryImpl extends Object implements ThreadFactory
The implementation of ThreadFactory that is returned by ThreadFactoryBuilder.build().
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: ThreadFactoryBuilderImpl.java 1118 2024-03-15 16:14:15Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl.ThreadFactoryImpl"

UML Diagram for "org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl.ThreadFactoryImpl"

UML Diagram for "org.tquadrat.foundation.lang.internal.ThreadFactoryBuilderImpl.ThreadFactoryImpl"
  • Field Details

  • Constructor Details

    • ThreadFactoryImpl

      public ThreadFactoryImpl(IntFunction<String> nameFactory, ThreadGroup threadGroup, long stackSize, boolean inheritThreadLocals, ClassLoader contextClassLoader, boolean isDaemon, int priority, Thread.UncaughtExceptionHandler uncaughtExceptionHandler, boolean isVirtual)
      Creates a new instance of ThreadFactoryImpl.
      Parameters:
      nameFactory - The factory method for the thread names.
      threadGroup - The thread group for the new thread; can be null.
      stackSize - The desired stack size for the new threads, or zero to indicate that this parameter is to be ignored.
      inheritThreadLocals - If true, inherit initial values for inheritable thread-locals from the constructing thread, otherwise no initial values are inherited.
      contextClassLoader - The context class loader for the new threads; can be null.
      isDaemon - true if the new threads are daemon threads, false otherwise.
      priority - The priority for the new threads. A value of -1 indicates that no priority will be set explicitly.
      uncaughtExceptionHandler - The handler for uncaught exceptions for the new threads; can be null.
      isVirtual - true if this factory creates virtual threads, false if it creates platform threads.
  • Method Details