@@ -143,22 +143,7 @@ class VirtualThread extends Thread {
143
143
}
144
144
145
145
this .scheduler = scheduler ;
146
- this .cont = new Continuation (VTHREAD_SCOPE , target ) {
147
- @ Override
148
- protected void onPinned (Continuation .Pinned reason ) {
149
- if (TRACE_PINNING_MODE > 0 ) {
150
- boolean printAll = (TRACE_PINNING_MODE == 1 );
151
- PinnedThreadPrinter .printStackTrace (System .out , printAll );
152
- }
153
-
154
- int s = state ();
155
- if (s == PARKING ) {
156
- parkCarrierThread ();
157
- } else if (s == YIELDING ) {
158
- setState (RUNNING );
159
- }
160
- }
161
- };
146
+ this .cont = new VirtualThreadContinuation (this , target );
162
147
163
148
this .runContinuation = (scheduler != null )
164
149
? new Runner (this )
@@ -179,6 +164,32 @@ static ContinuationScope continuationScope() {
179
164
return VTHREAD_SCOPE ;
180
165
}
181
166
167
+ /**
168
+ * A continuation for a virtual thread.
169
+ */
170
+ private static class VirtualThreadContinuation extends Continuation {
171
+ private final VirtualThread vthread ;
172
+ VirtualThreadContinuation (VirtualThread vthread , Runnable task ) {
173
+ super (VTHREAD_SCOPE , task );
174
+ this .vthread = vthread ;
175
+ }
176
+
177
+ @ Override
178
+ protected void onPinned (Continuation .Pinned reason ) {
179
+ if (TRACE_PINNING_MODE > 0 ) {
180
+ boolean printAll = (TRACE_PINNING_MODE == 1 );
181
+ PinnedThreadPrinter .printStackTrace (System .out , printAll );
182
+ }
183
+
184
+ int s = vthread .state ();
185
+ if (s == PARKING ) {
186
+ vthread .parkCarrierThread ();
187
+ } else if (s == YIELDING ) {
188
+ vthread .setState (RUNNING );
189
+ }
190
+ }
191
+ }
192
+
182
193
/**
183
194
* The task to execute when using a custom scheduler.
184
195
*/
@@ -215,27 +226,6 @@ public Object attachment() {
215
226
}
216
227
}
217
228
218
- /**
219
- * Schedules this {@code VirtualThread} to execute.
220
- *
221
- * @throws IllegalThreadStateException if the thread has already been started
222
- * @throws RejectedExecutionException if the scheduler cannot accept a task
223
- */
224
- @ Override
225
- public void start () {
226
- if (!compareAndSetState (NEW , STARTED )) {
227
- throw new IllegalThreadStateException ("Already started" );
228
- }
229
- ThreadDumper .notifyStart (this ); // no-op if threads not tracked
230
- try {
231
- scheduler .execute (runContinuation );
232
- } catch (RejectedExecutionException ree ) {
233
- // assume executor has been shutdown
234
- afterTerminate (/*executed*/ false );
235
- throw ree ;
236
- }
237
- }
238
-
239
229
/**
240
230
* Runs or continues execution of the continuation on the current thread.
241
231
*/
@@ -440,6 +430,27 @@ private void parkCarrierThread() {
440
430
Thread .currentThread ().interrupt ();
441
431
}
442
432
433
+ /**
434
+ * Schedules this {@code VirtualThread} to execute.
435
+ *
436
+ * @throws IllegalThreadStateException if the thread has already been started
437
+ * @throws RejectedExecutionException if the scheduler cannot accept a task
438
+ */
439
+ @ Override
440
+ public void start () {
441
+ if (!compareAndSetState (NEW , STARTED )) {
442
+ throw new IllegalThreadStateException ("Already started" );
443
+ }
444
+ ThreadDumper .notifyStart (this ); // no-op if threads not tracked
445
+ try {
446
+ scheduler .execute (runContinuation );
447
+ } catch (RejectedExecutionException ree ) {
448
+ // assume executor has been shutdown
449
+ afterTerminate (/*executed*/ false );
450
+ throw ree ;
451
+ }
452
+ }
453
+
443
454
/**
444
455
* Disables the current virtual thread for scheduling purposes.
445
456
*
0 commit comments