<div dir="ltr">Hi,<br><br>I would like to ask for a new type of scope in addition to `StructuredTaskScope` which we already have.<br><br>For the general need, please consider the following scenario:<br><br>1. Let's assume there is a simple server which schedules a background job for a specific HTTP request.<br><br>2. In such a server, we might assume that each HTTP request handler is running in a particular scope.<br><br>Notice that, if we are scheduling a new job in the HTTP request, then we can't do it in a scope, because the scheduled job has a longer lifetime than the current scope, and even if we had an outer STS, we could not directly call that, because STS does not allow a call from a child scope. However, we might want to use the main application scope, which we can't, if we just used a usual executor.<br><br>Still, I have created a POC [1] relying on STS that provides the equivalent feature, I'm asking for. However, the problem with this is that it requires a channel, which is needlessly inefficient. That is, an implementation of this feature in the JDK could look very similar to STS, but would allow the call from a child scope, and would return a `CompletableFuture` (or maybe something similar) instead.<br><br>[1]: <a href="https://gist.github.com/kelemen/192dfd56bf9bd814d267cd70df0268f0">https://gist.github.com/kelemen/192dfd56bf9bd814d267cd70df0268f0</a><br><div><br></div><div>Attila</div></div>