├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .scrutinizer.yml ├── CHANGELOG ├── CODEOWNERS ├── Command ├── AnonConsumerCommand.php ├── BaseConsumerCommand.php ├── BaseRabbitMqCommand.php ├── BatchConsumerCommand.php ├── ConsumerCommand.php ├── DeleteCommand.php ├── DynamicConsumerCommand.php ├── MultipleConsumerCommand.php ├── PurgeConsumerCommand.php ├── RpcServerCommand.php ├── SetupFabricCommand.php └── StdInProducerCommand.php ├── DataCollector └── MessageDataCollector.php ├── DependencyInjection ├── Compiler │ ├── InjectEventDispatcherPass.php │ └── RegisterPartsPass.php ├── Configuration.php └── OldSoundRabbitMqExtension.php ├── Event ├── AMQPEvent.php ├── AbstractAMQPEvent.php ├── AfterProcessingMessageEvent.php ├── BeforeProcessingMessageEvent.php ├── OnConsumeEvent.php └── OnIdleEvent.php ├── MemoryChecker ├── MemoryConsumptionChecker.php └── NativeMemoryUsageProvider.php ├── OldSoundRabbitMqBundle.php ├── Provider ├── ConnectionParametersProviderInterface.php ├── QueueOptionsProviderInterface.php └── QueuesProviderInterface.php ├── README.md ├── RabbitMq ├── AMQPConnectionFactory.php ├── AMQPLoggedChannel.php ├── AmqpPartsHolder.php ├── AnonConsumer.php ├── BaseAmqp.php ├── BaseConsumer.php ├── BatchConsumer.php ├── BatchConsumerInterface.php ├── Binding.php ├── Consumer.php ├── ConsumerInterface.php ├── DequeuerAwareInterface.php ├── DequeuerInterface.php ├── DynamicConsumer.php ├── Exception │ ├── AckStopConsumerException.php │ ├── QueueNotFoundException.php │ └── StopConsumerException.php ├── Fallback.php ├── MultipleConsumer.php ├── Producer.php ├── ProducerInterface.php ├── RpcClient.php └── RpcServer.php ├── Resources ├── config │ └── rabbitmq.xml ├── meta │ └── LICENSE.md └── views │ └── Collector │ └── collector.html.twig ├── Tests ├── Command │ ├── BaseCommandTest.php │ ├── ConsumerCommandTest.php │ ├── DynamicConsumerCommandTest.php │ ├── MultipleConsumerCommandTest.php │ └── PurgeCommandTest.php ├── DependencyInjection │ ├── Fixtures │ │ ├── collector.yml │ │ ├── collector_disabled.yml │ │ ├── config_with_enable_logger.yml │ │ ├── exchange_arguments.yml │ │ ├── no_collector.yml │ │ ├── no_exchange_options.yml │ │ ├── rpc-clients.yml │ │ └── test.yml │ └── OldSoundRabbitMqExtensionTest.php ├── Event │ ├── AfterProcessingMessageEventTest.php │ ├── BeforeProcessingMessageEventTest.php │ └── OnIdleEventTest.php ├── Manager │ └── MemoryConsumptionCheckerTest.php ├── RabbitMq │ ├── AMQPConnectionFactoryTest.php │ ├── BaseAmqpTest.php │ ├── BaseConsumerTest.php │ ├── BindingTest.php │ ├── ConsumerTest.php │ ├── DynamicConsumerTest.php │ ├── Fixtures │ │ ├── AMQPConnection.php │ │ └── AMQPSocketConnection.php │ ├── MultipleConsumerTest.php │ ├── RpcClientTest.php │ └── RpcServerTest.php └── bootstrap.php ├── composer.json ├── phpstan.neon.dist └── phpunit.xml.dist /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Command/AnonConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/AnonConsumerCommand.php -------------------------------------------------------------------------------- /Command/BaseConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/BaseConsumerCommand.php -------------------------------------------------------------------------------- /Command/BaseRabbitMqCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/BaseRabbitMqCommand.php -------------------------------------------------------------------------------- /Command/BatchConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/BatchConsumerCommand.php -------------------------------------------------------------------------------- /Command/ConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/ConsumerCommand.php -------------------------------------------------------------------------------- /Command/DeleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/DeleteCommand.php -------------------------------------------------------------------------------- /Command/DynamicConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/DynamicConsumerCommand.php -------------------------------------------------------------------------------- /Command/MultipleConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/MultipleConsumerCommand.php -------------------------------------------------------------------------------- /Command/PurgeConsumerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/PurgeConsumerCommand.php -------------------------------------------------------------------------------- /Command/RpcServerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/RpcServerCommand.php -------------------------------------------------------------------------------- /Command/SetupFabricCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/SetupFabricCommand.php -------------------------------------------------------------------------------- /Command/StdInProducerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Command/StdInProducerCommand.php -------------------------------------------------------------------------------- /DataCollector/MessageDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/DataCollector/MessageDataCollector.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/InjectEventDispatcherPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/DependencyInjection/Compiler/InjectEventDispatcherPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/RegisterPartsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/DependencyInjection/Compiler/RegisterPartsPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/OldSoundRabbitMqExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/DependencyInjection/OldSoundRabbitMqExtension.php -------------------------------------------------------------------------------- /Event/AMQPEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Event/AMQPEvent.php -------------------------------------------------------------------------------- /Event/AbstractAMQPEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Event/AbstractAMQPEvent.php -------------------------------------------------------------------------------- /Event/AfterProcessingMessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Event/AfterProcessingMessageEvent.php -------------------------------------------------------------------------------- /Event/BeforeProcessingMessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Event/BeforeProcessingMessageEvent.php -------------------------------------------------------------------------------- /Event/OnConsumeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Event/OnConsumeEvent.php -------------------------------------------------------------------------------- /Event/OnIdleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Event/OnIdleEvent.php -------------------------------------------------------------------------------- /MemoryChecker/MemoryConsumptionChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/MemoryChecker/MemoryConsumptionChecker.php -------------------------------------------------------------------------------- /MemoryChecker/NativeMemoryUsageProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/MemoryChecker/NativeMemoryUsageProvider.php -------------------------------------------------------------------------------- /OldSoundRabbitMqBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/OldSoundRabbitMqBundle.php -------------------------------------------------------------------------------- /Provider/ConnectionParametersProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Provider/ConnectionParametersProviderInterface.php -------------------------------------------------------------------------------- /Provider/QueueOptionsProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Provider/QueueOptionsProviderInterface.php -------------------------------------------------------------------------------- /Provider/QueuesProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Provider/QueuesProviderInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/README.md -------------------------------------------------------------------------------- /RabbitMq/AMQPConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/AMQPConnectionFactory.php -------------------------------------------------------------------------------- /RabbitMq/AMQPLoggedChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/AMQPLoggedChannel.php -------------------------------------------------------------------------------- /RabbitMq/AmqpPartsHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/AmqpPartsHolder.php -------------------------------------------------------------------------------- /RabbitMq/AnonConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/AnonConsumer.php -------------------------------------------------------------------------------- /RabbitMq/BaseAmqp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/BaseAmqp.php -------------------------------------------------------------------------------- /RabbitMq/BaseConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/BaseConsumer.php -------------------------------------------------------------------------------- /RabbitMq/BatchConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/BatchConsumer.php -------------------------------------------------------------------------------- /RabbitMq/BatchConsumerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/BatchConsumerInterface.php -------------------------------------------------------------------------------- /RabbitMq/Binding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Binding.php -------------------------------------------------------------------------------- /RabbitMq/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Consumer.php -------------------------------------------------------------------------------- /RabbitMq/ConsumerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/ConsumerInterface.php -------------------------------------------------------------------------------- /RabbitMq/DequeuerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/DequeuerAwareInterface.php -------------------------------------------------------------------------------- /RabbitMq/DequeuerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/DequeuerInterface.php -------------------------------------------------------------------------------- /RabbitMq/DynamicConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/DynamicConsumer.php -------------------------------------------------------------------------------- /RabbitMq/Exception/AckStopConsumerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Exception/AckStopConsumerException.php -------------------------------------------------------------------------------- /RabbitMq/Exception/QueueNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Exception/QueueNotFoundException.php -------------------------------------------------------------------------------- /RabbitMq/Exception/StopConsumerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Exception/StopConsumerException.php -------------------------------------------------------------------------------- /RabbitMq/Fallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Fallback.php -------------------------------------------------------------------------------- /RabbitMq/MultipleConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/MultipleConsumer.php -------------------------------------------------------------------------------- /RabbitMq/Producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/Producer.php -------------------------------------------------------------------------------- /RabbitMq/ProducerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/ProducerInterface.php -------------------------------------------------------------------------------- /RabbitMq/RpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/RpcClient.php -------------------------------------------------------------------------------- /RabbitMq/RpcServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/RabbitMq/RpcServer.php -------------------------------------------------------------------------------- /Resources/config/rabbitmq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Resources/config/rabbitmq.xml -------------------------------------------------------------------------------- /Resources/meta/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Resources/meta/LICENSE.md -------------------------------------------------------------------------------- /Resources/views/Collector/collector.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Resources/views/Collector/collector.html.twig -------------------------------------------------------------------------------- /Tests/Command/BaseCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Command/BaseCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/ConsumerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Command/ConsumerCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/DynamicConsumerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Command/DynamicConsumerCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/MultipleConsumerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Command/MultipleConsumerCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/PurgeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Command/PurgeCommandTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/collector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/collector.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/collector_disabled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/collector_disabled.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/config_with_enable_logger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/config_with_enable_logger.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/exchange_arguments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/exchange_arguments.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/no_collector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/no_collector.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/no_exchange_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/no_exchange_options.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/rpc-clients.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/rpc-clients.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/Fixtures/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/Fixtures/test.yml -------------------------------------------------------------------------------- /Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php -------------------------------------------------------------------------------- /Tests/Event/AfterProcessingMessageEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Event/AfterProcessingMessageEventTest.php -------------------------------------------------------------------------------- /Tests/Event/BeforeProcessingMessageEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Event/BeforeProcessingMessageEventTest.php -------------------------------------------------------------------------------- /Tests/Event/OnIdleEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Event/OnIdleEventTest.php -------------------------------------------------------------------------------- /Tests/Manager/MemoryConsumptionCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/Manager/MemoryConsumptionCheckerTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/AMQPConnectionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/AMQPConnectionFactoryTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/BaseAmqpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/BaseAmqpTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/BaseConsumerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/BaseConsumerTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/BindingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/BindingTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/ConsumerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/ConsumerTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/DynamicConsumerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/DynamicConsumerTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/Fixtures/AMQPConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/Fixtures/AMQPConnection.php -------------------------------------------------------------------------------- /Tests/RabbitMq/Fixtures/AMQPSocketConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/Fixtures/AMQPSocketConnection.php -------------------------------------------------------------------------------- /Tests/RabbitMq/MultipleConsumerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/MultipleConsumerTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/RpcClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/RpcClientTest.php -------------------------------------------------------------------------------- /Tests/RabbitMq/RpcServerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eMAGTechLabs/RabbitMqBundle/HEAD/Tests/RabbitMq/RpcServerTest.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |