-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Labels
Description
In Java, the returned Future can be cancelled and this should interrupt the executing thread causing any blocking I/O to return early.
However there is no such mechanism in JavaScript and C++. JavaScript currently only tries to release interrupt any locks, and C++'s future does not support aborting. Consider defining Url.abort() to support this operation—something additional will also need to be done for C++ to expose access to a future.abort().
Reactions are currently unavailable