Create a new context which propagates the values of this context but does not cascade its cancellation.
()
| 401 | * cancellation. |
| 402 | */ |
| 403 | public Context fork() { |
| 404 | return new Context(keyValueEntries, generation + 1); |
| 405 | } |
| 406 | |
| 407 | /** |
| 408 | * Attach this context, thus enter a new scope within which this context is {@link #current}. The |
no outgoing calls