Let's say I have a blocking long running process that uses SoapClient to connect to a webservice , Is it possible to wrap the normal code into an async way , I'm aware that I can send parallel Soap requests with different libraries , I just want to know is it possible to wrap a blocking process into an async way or not ?
In normal mode a blocking request is sent and waits for response.
In my need multiple blocking request are sent at once, like a job that a multi processing does but in a single process.