Description of changes: Provides the option to move serialisation and deserialisation of the request and response bodies off the event loop (which could become contended with large request or response bodies due to the limited number of loops) and onto threads managed by the global dispatch queue (which can expand as needed). This reduces contention for the event loops under these circumstances and provides more stable worse-case latencies.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Issue #, if available:
Description of changes: Provides the option to move serialisation and deserialisation of the request and response bodies off the event loop (which could become contended with large request or response bodies due to the limited number of loops) and onto threads managed by the global dispatch queue (which can expand as needed). This reduces contention for the event loops under these circumstances and provides more stable worse-case latencies.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.