PHP code example of pekkis / queue
1. Go to this page and download the library: Download pekkis/queue library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pekkis / queue example snippets
namespace Pekkis\Queue\Example;
use Pekkis\Queue\Adapter\IronMQAdapter;
use Pekkis\Queue\Message;
use Pekkis\Queue\Queue;
ple')
);
// Queues can be emptied.
$queue->purge();
// A message consists of a topic and data. A message instance with an UUID you can use is returned.
$message = $queue->enqueue(
'pekkis.queue.example',
array(
'some' => 'random data'
)
);
// Dequeue and process a single message
$received = $queue->dequeue();
$data = $received->getData();
var_dump($data);
// Acknowledge the message (you're done with it)
$queue->ack($received);