Home | History | Annotate | Download | only in concurrent

Lines Matching defs:daemon

30  * <li> whether threads should be marked as {@linkplain Thread#setDaemon daemon}
47 private Boolean daemon = null;
77 * Sets daemon or not for new threads created with this ThreadFactory.
79 * @param daemon whether or not new Threads created with this ThreadFactory
80 * will be daemon threads
83 public ThreadFactoryBuilder setDaemon(boolean daemon) {
84 this.daemon = daemon;
151 final Boolean daemon = builder.daemon;
166 if (daemon != null) {
167 thread.setDaemon(daemon);