Releases: CuyZ/WebZ
Releases · CuyZ/WebZ
0.12.0
0.11.0
0.10.0
0.9.0
0.8.0
0.7.0
You can now do concurrent calls in HTTP:
$bus = Bus::builder()
->withTransport(new HttpTransport())
->build();
$promises = $bus->callAsync(
new GetFooWebService(123),
new GetFooWebService(456),
);
foreach ($promises as $promise) {
$foo = $promise->wait();
}