Hi,
with the removal of okhttp3 support in spring framework 7+ I would like to implement those on my own.
While AbstractClientHttpRequest is public and can be extended, the AbstractStreamingClientHttpRequest is package protected, so I must use the same package (which I would rather not do but using this at the moment) or copy that code.
Would it be possible to make that AbstractStreamingClientHttpRequest class public too to be able to extend it and allow for easier extension in the spring http abstraction layer?