-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from GuicedEE/v2.0.0
V2.0.0
- Loading branch information
Showing
108 changed files
with
1,739 additions
and
6,469 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ Thumbs.db | |
flatter.pom**/*.classpath | ||
/.idea/ | ||
/.flattened-pom.xml | ||
/dependency-reduced-pom.xml |
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
14 changes: 14 additions & 0 deletions
14
src/jre11/java/com/guicedee/guicedinjection/ExecutorServiceSupplier.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,14 @@ | ||
package com.guicedee.guicedinjection; | ||
|
||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.function.Supplier; | ||
|
||
public class ExecutorServiceSupplier implements Supplier<ExecutorService> | ||
{ | ||
@Override | ||
public ExecutorService get() | ||
{ | ||
return Executors.newCachedThreadPool(); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/jre21/java/com/guicedee/guicedinjection/ExecutorServiceSupplier.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,14 @@ | ||
package com.guicedee.guicedinjection; | ||
|
||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.function.Supplier; | ||
|
||
public class ExecutorServiceSupplier implements Supplier<ExecutorService> | ||
{ | ||
@Override | ||
public ExecutorService get() | ||
{ | ||
return Executors.newVirtualThreadPerTaskExecutor(); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.