Skip to content

Commit f9268dd

Browse files
committedFeb 1, 2021
Replace anonymous class to allow for future changes
1 parent 6ac45af commit f9268dd

File tree

1 file changed

+48
-37
lines changed

1 file changed

+48
-37
lines changed
 

‎src/java.base/share/classes/java/lang/VirtualThread.java

+48-37
Original file line numberDiff line numberDiff line change
@@ -143,22 +143,7 @@ class VirtualThread extends Thread {
143143
}
144144

145145
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);
162147

163148
this.runContinuation = (scheduler != null)
164149
? new Runner(this)
@@ -179,6 +164,32 @@ static ContinuationScope continuationScope() {
179164
return VTHREAD_SCOPE;
180165
}
181166

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+
182193
/**
183194
* The task to execute when using a custom scheduler.
184195
*/
@@ -215,27 +226,6 @@ public Object attachment() {
215226
}
216227
}
217228

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-
239229
/**
240230
* Runs or continues execution of the continuation on the current thread.
241231
*/
@@ -440,6 +430,27 @@ private void parkCarrierThread() {
440430
Thread.currentThread().interrupt();
441431
}
442432

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+
443454
/**
444455
* Disables the current virtual thread for scheduling purposes.
445456
*

0 commit comments

Comments
 (0)
Please sign in to comment.