You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases it's desirable to be able to control which EventLoop a request is executed on. For instance, if uploading a file using NIO's NonBlockingFileIO we currently incur the cost of hopping between the event loop reading from disk and the event loop writing to the network on every chunk.
In some cases it's desirable to be able to control which
EventLoop
a request is executed on. For instance, if uploading a file using NIO'sNonBlockingFileIO
we currently incur the cost of hopping between the event loop reading from disk and the event loop writing to the network on every chunk.HTTPClient.execute
could be updated as follows:The text was updated successfully, but these errors were encountered: