-
Notifications
You must be signed in to change notification settings - Fork 38.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configuration options for virtual threads (on JDK 21)
VirtualThreadDelegate built on JDK 21 for multi-release jar. Includes dedicated VirtualThreadTaskExecutor as lean option. Includes setVirtualThreads flag on SimpleAsyncTaskExecutor. Includes additional default methods on AsyncTaskExecutor. Closes gh-30241
- Loading branch information
Showing
16 changed files
with
385 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
spring-core/src/main/java/org/springframework/core/task/VirtualThreadDelegate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright 2002-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.core.task; | ||
|
||
import java.util.concurrent.ThreadFactory; | ||
|
||
/** | ||
* Internal delegate for virtual thread handling on JDK 21. | ||
* This is a dummy version for reachability on JDK <21. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 6.1 | ||
* @see VirtualThreadTaskExecutor | ||
*/ | ||
class VirtualThreadDelegate { | ||
|
||
public VirtualThreadDelegate() { | ||
throw new UnsupportedOperationException("Virtual threads not supported on JDK <21"); | ||
} | ||
|
||
public ThreadFactory virtualThreadFactory() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
public ThreadFactory virtualThreadFactory(String threadNamePrefix) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
public Thread startVirtualThread(String name, Runnable task) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
} |
67 changes: 67 additions & 0 deletions
67
spring-core/src/main/java/org/springframework/core/task/VirtualThreadTaskExecutor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright 2002-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.core.task; | ||
|
||
import java.util.concurrent.ThreadFactory; | ||
|
||
/** | ||
* A {@link TaskExecutor} implementation based on virtual threads in JDK 21+. | ||
* The only configuration option is a thread name prefix. | ||
* | ||
* <p>For additional features such as concurrency limiting or task decoration, | ||
* consider using {@link SimpleAsyncTaskExecutor#setVirtualThreads} instead. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 6.1 | ||
* @see SimpleAsyncTaskExecutor | ||
*/ | ||
public class VirtualThreadTaskExecutor implements AsyncTaskExecutor { | ||
|
||
private final ThreadFactory virtualThreadFactory; | ||
|
||
|
||
/** | ||
* Create a new {@code VirtualThreadTaskExecutor} without thread naming. | ||
*/ | ||
public VirtualThreadTaskExecutor() { | ||
this.virtualThreadFactory = new VirtualThreadDelegate().virtualThreadFactory(); | ||
} | ||
|
||
/** | ||
* Create a new {@code VirtualThreadTaskExecutor} with thread names based | ||
* on the given thread name prefix followed by a counter (e.g. "test-0"). | ||
* @param threadNamePrefix the prefix for thread names (e.g. "test-") | ||
*/ | ||
public VirtualThreadTaskExecutor(String threadNamePrefix) { | ||
this.virtualThreadFactory = new VirtualThreadDelegate().virtualThreadFactory(threadNamePrefix); | ||
} | ||
|
||
|
||
/** | ||
* Return the underlying virtual {@link ThreadFactory}. | ||
* Can also be used for custom thread creation elsewhere. | ||
*/ | ||
public final ThreadFactory getVirtualThreadFactory() { | ||
return this.virtualThreadFactory; | ||
} | ||
|
||
@Override | ||
public void execute(Runnable task) { | ||
this.virtualThreadFactory.newThread(task).start(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
spring-core/src/main/java21/org/springframework/core/task/VirtualThreadDelegate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright 2002-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.core.task; | ||
|
||
import java.util.concurrent.ThreadFactory; | ||
|
||
/** | ||
* Internal delegate for virtual thread handling on JDK 21. | ||
* This is the actual version compiled against JDK 21. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 6.1 | ||
* @see VirtualThreadTaskExecutor | ||
*/ | ||
class VirtualThreadDelegate { | ||
|
||
private final Thread.Builder threadBuilder = Thread.ofVirtual(); | ||
|
||
public ThreadFactory virtualThreadFactory() { | ||
return this.threadBuilder.factory(); | ||
} | ||
|
||
public ThreadFactory virtualThreadFactory(String threadNamePrefix) { | ||
return this.threadBuilder.name(threadNamePrefix, 0).factory(); | ||
} | ||
|
||
public Thread startVirtualThread(String name, Runnable task) { | ||
return this.threadBuilder.name(name).start(task); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.