Enqueue is an MIT-licensed open source project with its ongoing development made possible entirely by the support of community and our customers. If you'd like to join them, please consider:
A transport for Web Application Messaging Protocol. WAMP is an open standard WebSocket subprotocol. It uses internally Thruway PHP library voryx/thruway
- Installation
- Start the WAMP router
- Create context
- Consume message
- Subscription consumer
- Send message to topic
$ composer require enqueue/wamp
$ php vendor/voryx/thruway/Examples/SimpleWsRouter.php
Thruway is now running on 127.0.0.1 port 9090
<?php
use Enqueue\Wamp\WampConnectionFactory;
$connectionFactory = new WampConnectionFactory();
// same as above
$connectionFactory = new WampConnectionFactory('wamp:');
$connectionFactory = new WampConnectionFactory('ws:');
$connectionFactory = new WampConnectionFactory('wamp://127.0.0.1:9090');
$context = $connectionFactory->createContext();
Start message consumer before send message to the topic
<?php
/** @var \Enqueue\Wamp\WampContext $context */
$fooTopic = $context->createTopic('foo');
$consumer = $context->createConsumer($fooQueue);
while (true) {
if ($message = $consumer->receive()) {
// process a message
}
}
<?php
use Interop\Queue\Message;
use Interop\Queue\Consumer;
/** @var \Enqueue\Wamp\WampContext $context */
/** @var \Enqueue\Wamp\WampDestination $fooQueue */
/** @var \Enqueue\Wamp\WampDestination $barQueue */
$fooConsumer = $context->createConsumer($fooQueue);
$barConsumer = $context->createConsumer($barQueue);
$subscriptionConsumer = $context->createSubscriptionConsumer();
$subscriptionConsumer->subscribe($fooConsumer, function(Message $message, Consumer $consumer) {
// process message
return true;
});
$subscriptionConsumer->subscribe($barConsumer, function(Message $message, Consumer $consumer) {
// process message
return true;
});
$subscriptionConsumer->consume(2000); // 2 sec
<?php
/** @var \Enqueue\Wamp\WampContext $context */
$fooTopic = $context->createTopic('foo');
$message = $context->createMessage('Hello world!');
$context->createProducer()->send($fooTopic, $message);