@@ -754,16 +754,11 @@ public static Builder builder() {
754
754
public interface Builder {
755
755
756
756
/**
757
- * Sets the thread group.
758
- *
759
- * <p> The thread group for threads that are scheduled by the Java virtual
760
- * machine threads does not support all features of regular thread groups.
761
- * The thread group can only be set for threads that are scheduled by
762
- * the operating system.
763
- *
757
+ * Sets the thread group. The thread group of a virtual thread cannot
758
+ * be selected at build time. Setting the thread group of a virtual
759
+ * thread has no effect.
764
760
* @param group the thread group
765
761
* @return this builder
766
- * @throws IllegalStateException if this is a builder for a virtual thread
767
762
*/
768
763
Builder group (ThreadGroup group );
769
764
@@ -789,7 +784,6 @@ public interface Builder {
789
784
* the operating system. The scheduler will be selected when the thread
790
785
* is {@linkplain #build() created} or {@linkplain #start() started}.
791
786
* @return this builder
792
- * @throws IllegalStateException if a thread group has been set
793
787
*/
794
788
Builder virtual ();
795
789
@@ -806,7 +800,6 @@ public interface Builder {
806
800
* task on the <em>current thread</em>.
807
801
* @param scheduler the scheduler or {@code null} for the default scheduler
808
802
* @return this builder
809
- * @throws IllegalStateException if a thread group has been set
810
803
*/
811
804
Builder virtual (Executor scheduler );
812
805
@@ -815,7 +808,6 @@ public interface Builder {
815
808
* a thread-local with the {@link ThreadLocal#set(Object)} method then
816
809
* {@code UnsupportedOperationException} is thrown.
817
810
* @return this builder
818
- * @throws IllegalStateException if inheritThreadLocals has already been set
819
811
* @see ThreadLocal#set(Object)
820
812
*/
821
813
Builder disallowThreadLocals ();
@@ -824,16 +816,16 @@ public interface Builder {
824
816
* Inherit threads-locals. Thread locals are inherited when the {@code Thread}
825
817
* is created with the {@link #build() build} method or when the thread
826
818
* factory {@link ThreadFactory#newThread(Runnable) newThread} method
827
- * is invoked.
819
+ * is invoked. This method has no effect when thread locals are {@linkplain
820
+ * #disallowThreadLocals() disallowed}.
828
821
* @return this builder
829
- * @throws IllegalStateException if disallowThreadLocals has already been set
830
822
*/
831
823
Builder inheritThreadLocals ();
832
824
833
825
/**
834
826
* Sets the daemon status.
835
827
* The {@link #isDaemon() daemon status} of virtual threads is always {@code true}.
836
- * Setting the daemon status at build time has no effect.
828
+ * Setting the daemon status of a virtual thread has no effect.
837
829
* @param on {@code true} to create daemon threads
838
830
* @return this builder
839
831
*/
@@ -842,7 +834,7 @@ public interface Builder {
842
834
/**
843
835
* Sets the thread priority.
844
836
* The priority of virtual threads is always {@linkplain Thread#NORM_PRIORITY}.
845
- * Setting the priority of a virtual thread at build time has no effect.
837
+ * Setting the priority of a virtual thread has no effect.
846
838
* @param priority priority
847
839
* @return this builder
848
840
* @throws IllegalArgumentException if the priority is less than
@@ -977,9 +969,8 @@ private int characteristics() {
977
969
@ Override
978
970
public Builder group (ThreadGroup group ) {
979
971
Objects .requireNonNull (group );
980
- if (virtual )
981
- throw new IllegalStateException ();
982
- this .group = group ;
972
+ if (!virtual )
973
+ this .group = group ;
983
974
return this ;
984
975
}
985
976
@@ -1002,37 +993,33 @@ public Builder name(String prefix, int start) {
1002
993
1003
994
@ Override
1004
995
public Builder virtual () {
1005
- if (group != null )
1006
- throw new IllegalStateException ();
1007
- this .virtual = true ;
996
+ this .group = null ;
1008
997
this .scheduler = null ;
998
+ this .virtual = true ;
1009
999
return this ;
1010
1000
}
1011
1001
1012
1002
@ Override
1013
1003
public Builder virtual (Executor scheduler ) {
1014
- if (group != null )
1015
- throw new IllegalStateException ();
1016
1004
if (scheduler == null )
1017
1005
scheduler = VirtualThread .defaultScheduler ();
1018
- this .virtual = true ;
1006
+ this .group = null ;
1019
1007
this .scheduler = scheduler ;
1008
+ this .virtual = true ;
1020
1009
return this ;
1021
1010
}
1022
1011
1023
1012
@ Override
1024
1013
public Builder disallowThreadLocals () {
1025
- if (inheritThreadLocals )
1026
- throw new IllegalStateException ();
1027
1014
this .disallowThreadLocals = true ;
1015
+ this .inheritThreadLocals = false ;
1028
1016
return this ;
1029
1017
}
1030
1018
1031
1019
@ Override
1032
1020
public Builder inheritThreadLocals () {
1033
- if (disallowThreadLocals )
1034
- throw new IllegalStateException ();
1035
- this .inheritThreadLocals = true ;
1021
+ if (!disallowThreadLocals )
1022
+ this .inheritThreadLocals = true ;
1036
1023
return this ;
1037
1024
}
1038
1025
0 commit comments