ably / ably-php

PHP client library SDK for Ably realtime messaging service
https://ably.com/download
Apache License 2.0
51 stars 10 forks source link

[Question] Does ably-php support Queues #200

Closed g41797 closed 3 months ago

g41797 commented 3 months ago

Context: I am developing set of queue libraries for Yii PHP Framework.

Ably Queues look as promising addition.

Question: Does ably-php support Queues?

Thanks

┆Issue is synchronized with this Jira Task by Unito

sacOO7 commented 3 months ago

As per documentation https://ably.com/docs/general/queues, Ably queues can be accessed using either AMQP or STOMP protocols. ably-php used native ably protocol and provides pub-sub functionality ( has nothing to do with ably queues as such ). You might like to look at https://github.com/php-amqp/php-amqp to connect with ably queues.

sacOO7 commented 3 months ago

image

g41797 commented 3 months ago

does it mean that i can use ready rabbitmq amqp client to work with ably queues? btw i am talking about

...internal queues (hosted by Ably)

sacOO7 commented 3 months ago

As long as it uses AMQP protocol, yes