Skip to content

Releases: ingresse/message-queue-php

Add Support to RPC and Priority

Choose a tag to compare

@JonasSFreire JonasSFreire released this 18 May 19:54
ca3a778
Merge pull request #26 from ingresse/feature/priority-support

add support to send messages with priority and to RPC calls

Exchange configuration

Choose a tag to compare

@hugofcampos hugofcampos released this 04 Nov 15:50

The SDK now supports exchange configuration, like the following:

// ...
'queue.exchanges' => [
    'exchange.test' => [                
        'type' => 'fanout'
        'passive' => false,
        'durable' => true,
        'auto_delete' => false,
        'internal' => false,
        'nowait' => false,
        'arguments' => false,
        'ticket' => false,
        'delivery_mode' => 2
    ]
],
// ...

And then, setting in the Publisher

use MessageQueuePHP\Publisher\Publisher;

$myPublisher = new Publisher($amqpAdapter, 'worker.test', 'exchange.test');

Added array with queues config to factory

Choose a tag to compare

@fdiasr fdiasr released this 30 Aug 21:10
1.6.3

Added array with queues config to factory (#25)

Change adapter factory method to create

Choose a tag to compare

@fdiasr fdiasr released this 30 Aug 20:28
Change adapter factory method to create (#24)

Change method name from construct to create to be called external

Adjust for AMQP Config for right namespace

Update dependency monolog version

Choose a tag to compare

@fdiasr fdiasr released this 30 Aug 20:00
1.6.1

Updated monolog version (#23)

Factory to create the adapter

Choose a tag to compare

@fdiasr fdiasr released this 30 Aug 19:17
1.6

Add a factory to create the adapter (#22)

Update predis version again. To try to solver dependency problems

Choose a tag to compare

@fdiasr fdiasr released this 13 Jun 16:46
1.5

Update predis version (#15)

Check config for log adapter

Choose a tag to compare

@fdiasr fdiasr released this 08 Jun 17:00
Check config in Logger Adapter (#14)

* Check config in Logger Adapter

 - Its was implemented a way to check if the needed variables was setted
   in the moment when LoggerAdapter was instanced and if not
   throws an exception

Fixing missing lib in composer file.

Choose a tag to compare

@Taffarel Taffarel released this 27 May 15:49
Add missing dependecy in composer file.

 - Adding predis/predis 1.0.*

Logger Adapter

Choose a tag to compare

@Taffarel Taffarel released this 02 May 20:16

Transforming QueueLogger to implement AdapterInterface to provide fallback when need it.