We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using someones implementation of an event loop and async streams, create an Asynchronous Client
removes the need for acknowledgement handler (a little bit)
interface AsyncMessageHandler { public function handle(MessageInterface $message, callable $done) : PromiseInterface } class Reader { public function asyncRead(AsyncMessageHandler $handler, int $num) { // read $handler->handle($message, $done) ->then($this->acknowledge, $this->reject); } }
The text was updated successfully, but these errors were encountered:
A start I made a while ago: https://github.com/graze/queue/tree/async-queues
Sorry, something went wrong.
No branches or pull requests
Using someones implementation of an event loop and async streams, create an Asynchronous Client
removes the need for acknowledgement handler (a little bit)
The text was updated successfully, but these errors were encountered: