I think you can do what you describe if you use #fork to create separate processes for each of your concurrent HTTP calls.
Here's an example -- Try the following (from http://forum.world.st/Teaching-fork-td4786444.html) 10 timesRepeat: [ (Delay forSeconds: 1) wait. Transcript show: 'hello'; cr ]. Then the following : [ 10 timesRepeat: [ (Delay forSeconds: 1) wait. Transcript show: 'hello'; cr ]] fork. You can also spawn OS sub-processes: https://github.com/pharo-contributions/OSSubprocess -t -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
