Source of file maks-amqp-agent-config.php
Size: 1,925 Bytes - Last Modified: 2021-01-11T04:52:59+00:00
C:/Users/MAKS/Code/_PROJECTS/amqp-agent/src/Config/maks-amqp-agent-config.php
1234567891011
Covered by 23 test(s):
1213
Covered by 1 test(s):
14
Covered by 1 test(s):
15161718
Covered by 1 test(s):
19
Covered by 1 test(s):
20
Covered by 1 test(s):
212223
Covered by 1 test(s):
24
Covered by 1 test(s):
25
Covered by 1 test(s):
26
Covered by 1 test(s):
272829
Covered by 1 test(s):
30
Covered by 1 test(s):
31
Covered by 1 test(s):
32333435
Covered by 1 test(s):
36
Covered by 1 test(s):
37
Covered by 1 test(s):
38
Covered by 1 test(s):
39
Covered by 1 test(s):
40
Covered by 1 test(s):
41424344
Covered by 1 test(s):
45
Covered by 1 test(s):
4647
| <?php namespace MAKS\AmqpAgent\Config; use MAKS\AmqpAgent\Config\AmqpAgentParameters; return [ // Global // Start of static/constant class properties. specific to AMQP Agent. // Only for reference, modifying them won't change anything. 'prefix' => AmqpAgentParameters::PREFIX, // default // If you want to modify command* use ClassName::$variableName. 'commandPrefix' => AmqpAgentParameters::COMMAND_PREFIX, 'commandSyntax' => AmqpAgentParameters::COMMAND_SYNTAX, // End of static/constant class properties. specific to AMQP Agent. // AbstractWorker 'connectionOptions' => AmqpAgentParameters::CONNECTION_OPTIONS, 'channelOptions' => AmqpAgentParameters::CHANNEL_OPTIONS, 'queueOptions' => AmqpAgentParameters::QUEUE_OPTIONS, // Publisher 'exchangeOptions' => AmqpAgentParameters::EXCHANGE_OPTIONS, 'bindOptions' => AmqpAgentParameters::BIND_OPTIONS, 'messageOptions' => AmqpAgentParameters::MESSAGE_OPTIONS, 'publishOptions' => AmqpAgentParameters::PUBLISH_OPTIONS, // Consumer 'qosOptions' => AmqpAgentParameters::QOS_OPTIONS, 'waitOptions' => AmqpAgentParameters::WAIT_OPTIONS, 'consumeOptions' => AmqpAgentParameters::CONSUME_OPTIONS, // Start of constant class properties. // Only for reference, modifying them won't change anything 'ackOptions' => AmqpAgentParameters::ACK_OPTIONS, 'nackOptions' => AmqpAgentParameters::NACK_OPTIONS, 'getOptions' => AmqpAgentParameters::GET_OPTIONS, 'cancelOptions' => AmqpAgentParameters::CANCEL_OPTIONS, 'recoverOptions' => AmqpAgentParameters::RECOVER_OPTIONS, 'rejectOptions' => AmqpAgentParameters::REJECT_OPTIONS, // End of constant class properties. // RPC Endpoints 'rpcConnectionOptions' => AmqpAgentParameters::RPC_CONNECTION_OPTIONS, 'rpcQueueName' => AmqpAgentParameters::RPC_QUEUE_NAME, ]; |