pjfanning opened a new issue, #483: URL: https://github.com/apache/incubator-pekko/issues/483
ForkJoinPool has extra contructors in JDK9+ that allow maximumPoolSize to be set. Pekko still supports JDK8 so implementing this is not straightforward. Options include: * adding a new dispatcher executor type of `fork-join-executor-jdk9` which is similar to `fork-join-executor` but supports the extra `maximumPoolSize` config (the class for this could be added to jdk9+ build (we support having a scala-jdk9 source directory) * have `fork-join-executor` support the `maximumPoolSize` but ignore it or fail if Java 8 runtime is used. We might need to use Java reflection to do this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
