INT-4131: Add delayExpression to AMQP Outbounds
JIRA: https://jira.spring.io/browse/INT-4131 Specify an expression on the outbound endpoints to set the `x-delay` header when using the RabbitMQ Delayed Message Exchange plugin. Polishing - PR Comments - Add `setDelay` - Port `FunctionExpression` from DSL - Add `SupplierExpression` Javadoc Fixes Use ValueExpression for delay * Simple polishing for `SupplierExpression` * Mention plain `delay` property in the `amqp.adoc` Conflicts: spring-integration-amqp/src/test/java/org/springframework/integration/amqp/outbound/OutboundEndpointTests.java Resolved. Backport Polishing Java 6 cpmpatibility; deprecation warnings.
This commit is contained in:
committed by
Artem Bilan
parent
8e33fa6b3d
commit
5b41dc1513
@@ -81,6 +81,8 @@ public class AmqpOutboundChannelAdapterParser extends AbstractOutboundChannelAda
|
||||
IntegrationNamespaceUtils.setReferenceIfAttributeDefined(builder, element, "confirm-ack-channel");
|
||||
IntegrationNamespaceUtils.setReferenceIfAttributeDefined(builder, element, "confirm-nack-channel");
|
||||
IntegrationNamespaceUtils.setReferenceIfAttributeDefined(builder, element, "return-channel");
|
||||
IntegrationNamespaceUtils.setValueIfAttributeDefined(builder, element, "delay-expression",
|
||||
"delayExpressionString");
|
||||
|
||||
return builder.getBeanDefinition();
|
||||
}
|
||||
|
||||
@@ -100,6 +100,8 @@ public class AmqpOutboundGatewayParser extends AbstractConsumerEndpointParser {
|
||||
mapperBuilder.setFactoryMethod("outboundMapper");
|
||||
IntegrationNamespaceUtils.configureHeaderMapper(element, builder, parserContext, mapperBuilder,
|
||||
null);
|
||||
IntegrationNamespaceUtils.setValueIfAttributeDefined(builder, element, "delay-expression",
|
||||
"delayExpressionString");
|
||||
|
||||
return builder;
|
||||
}
|
||||
|
||||
@@ -31,6 +31,7 @@ import org.springframework.expression.Expression;
|
||||
import org.springframework.integration.amqp.support.AmqpHeaderMapper;
|
||||
import org.springframework.integration.amqp.support.DefaultAmqpHeaderMapper;
|
||||
import org.springframework.integration.channel.NullChannel;
|
||||
import org.springframework.integration.expression.ValueExpression;
|
||||
import org.springframework.integration.handler.AbstractReplyProducingMessageHandler;
|
||||
import org.springframework.integration.handler.ExpressionEvaluatingMessageProcessor;
|
||||
import org.springframework.integration.support.AbstractIntegrationMessageBuilder;
|
||||
@@ -77,6 +78,10 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
|
||||
|
||||
private volatile ConnectionFactory connectionFactory;
|
||||
|
||||
private volatile Expression delayExpression;
|
||||
|
||||
private volatile ExpressionEvaluatingMessageProcessor<Integer> delayGenerator;
|
||||
|
||||
private volatile boolean running;
|
||||
|
||||
public void setHeaderMapper(AmqpHeaderMapper headerMapper) {
|
||||
@@ -188,6 +193,44 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
|
||||
this.lazyConnect = lazyConnect;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value to set in the {@code x-delay} header when using the
|
||||
* RabbitMQ delayed message exchange plugin. By default, the {@link AmqpHeaders#DELAY}
|
||||
* header (if present) is mapped; setting the delay here overrides that value.
|
||||
* @param delay the delay.
|
||||
* @since 4.3.5
|
||||
*/
|
||||
public void setDelay(int delay) {
|
||||
this.delayExpression = new ValueExpression<Integer>(delay);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the SpEL expression to calculate the {@code x-delay} header when using the
|
||||
* RabbitMQ delayed message exchange plugin. By default, the {@link AmqpHeaders#DELAY}
|
||||
* header (if present) is mapped; setting the expression here overrides that value.
|
||||
* @param delayExpression the expression.
|
||||
* @since 4.3.5
|
||||
*/
|
||||
public void setDelayExpression(Expression delayExpression) {
|
||||
this.delayExpression = delayExpression;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the SpEL expression to calculate the {@code x-delay} header when using the
|
||||
* RabbitMQ delayed message exchange plugin. By default, the {@link AmqpHeaders#DELAY}
|
||||
* header (if present) is mapped; setting the expression here overrides that value.
|
||||
* @param delayExpression the expression.
|
||||
* @since 4.3.5
|
||||
*/
|
||||
public void setDelayExpressionString(String delayExpression) {
|
||||
if (delayExpression == null) {
|
||||
this.delayExpression = null;
|
||||
}
|
||||
else {
|
||||
this.delayExpression = EXPRESSION_PARSER.parseExpression(delayExpression);
|
||||
}
|
||||
}
|
||||
|
||||
protected final void setConnectionFactory(ConnectionFactory connectionFactory) {
|
||||
this.connectionFactory = connectionFactory;
|
||||
}
|
||||
@@ -284,6 +327,13 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
|
||||
Assert.state(this.confirmNackChannel == null || nullChannel != null,
|
||||
"A 'confirmCorrelationExpression' is required when specifying a 'confirmNackChannel'");
|
||||
}
|
||||
if (this.delayExpression != null) {
|
||||
this.delayGenerator = new ExpressionEvaluatingMessageProcessor<Integer>(this.delayExpression,
|
||||
Integer.class);
|
||||
if (beanFactory != null) {
|
||||
this.delayGenerator.setBeanFactory(beanFactory);
|
||||
}
|
||||
}
|
||||
endpointInit();
|
||||
}
|
||||
|
||||
@@ -365,6 +415,12 @@ public abstract class AbstractAmqpOutboundEndpoint extends AbstractReplyProducin
|
||||
return routingKey;
|
||||
}
|
||||
|
||||
protected void addDelayProperty(Message<?> message, org.springframework.amqp.core.Message amqpMessage) {
|
||||
if (this.delayGenerator != null) {
|
||||
amqpMessage.getMessageProperties().setDelay(this.delayGenerator.processMessage(message));
|
||||
}
|
||||
}
|
||||
|
||||
protected Message<?> buildReplyMessage(MessageConverter converter,
|
||||
org.springframework.amqp.core.Message amqpReplyMessage) {
|
||||
Object replyObject = converter.fromMessage(amqpReplyMessage);
|
||||
|
||||
@@ -130,6 +130,7 @@ public class AmqpOutboundEndpoint extends AbstractAmqpOutboundEndpoint
|
||||
MessageConverter converter = ((RabbitTemplate) this.amqpTemplate).getMessageConverter();
|
||||
org.springframework.amqp.core.Message amqpMessage = MappingUtils.mapMessage(requestMessage, converter,
|
||||
getHeaderMapper(), getDefaultDeliveryMode());
|
||||
addDelayProperty(requestMessage, amqpMessage);
|
||||
((RabbitTemplate) this.amqpTemplate).send(exchangeName, routingKey, amqpMessage, correlationData);
|
||||
}
|
||||
else {
|
||||
@@ -153,6 +154,7 @@ public class AmqpOutboundEndpoint extends AbstractAmqpOutboundEndpoint
|
||||
MessageConverter converter = ((RabbitTemplate) this.amqpTemplate).getMessageConverter();
|
||||
org.springframework.amqp.core.Message amqpMessage = MappingUtils.mapMessage(requestMessage, converter,
|
||||
getHeaderMapper(), getDefaultDeliveryMode());
|
||||
addDelayProperty(requestMessage, amqpMessage);
|
||||
org.springframework.amqp.core.Message amqpReplyMessage =
|
||||
((RabbitTemplate) this.amqpTemplate).sendAndReceive(exchangeName, routingKey, amqpMessage,
|
||||
correlationData);
|
||||
|
||||
@@ -60,10 +60,11 @@ public class AsyncAmqpOutboundGateway extends AbstractAmqpOutboundEndpoint {
|
||||
|
||||
@Override
|
||||
protected Object handleRequestMessage(Message<?> requestMessage) {
|
||||
org.springframework.amqp.core.Message amqpMessage = MappingUtils.mapMessage(requestMessage,
|
||||
this.messageConverter, getHeaderMapper(), getDefaultDeliveryMode());
|
||||
addDelayProperty(requestMessage, amqpMessage);
|
||||
RabbitMessageFuture future = this.template.sendAndReceive(generateExchangeName(requestMessage),
|
||||
generateRoutingKey(requestMessage),
|
||||
MappingUtils.mapMessage(requestMessage, this.messageConverter, getHeaderMapper(),
|
||||
getDefaultDeliveryMode()));
|
||||
generateRoutingKey(requestMessage), amqpMessage);
|
||||
future.addCallback(new FutureCallback(requestMessage));
|
||||
CorrelationData correlationData = generateCorrelationData(requestMessage);
|
||||
if (correlationData != null && future.getConfirm() != null) {
|
||||
|
||||
@@ -542,6 +542,20 @@ property set to TRUE.
|
||||
</xsd:appinfo>
|
||||
</xsd:annotation>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="delay-expression" type="xsd:string">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation><![CDATA[
|
||||
A SpEL expression that evaluates to the value that will be set on the 'x-delay' header
|
||||
when using the RabbitMQ Delayed Message Exchange plugin. Takes precedence over any
|
||||
'AmqpHeaders.DELAY' set on the outbound message.
|
||||
]]></xsd:documentation>
|
||||
<xsd:appinfo>
|
||||
<tool:annotation kind="ref">
|
||||
<tool:expected-type type="org.springframework.messaging.MessageChannel"/>
|
||||
</tool:annotation>
|
||||
</xsd:appinfo>
|
||||
</xsd:annotation>
|
||||
</xsd:attribute>
|
||||
<xsd:attributeGroup ref="integration:smartLifeCycleAttributeGroup"/>
|
||||
</xsd:complexType>
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
exchange-name="outboundchanneladapter.test.1"
|
||||
default-delivery-mode="NON_PERSISTENT"
|
||||
lazy-connect="false"
|
||||
delay-expression="42"
|
||||
mapped-request-headers="foo*"/>
|
||||
|
||||
<bean id="customHeaderMapper" class="org.mockito.Mockito" factory-method="mock">
|
||||
|
||||
@@ -126,6 +126,9 @@ public class AmqpOutboundChannelAdapterParserTests {
|
||||
AmqpOutboundEndpoint.class);
|
||||
assertNotNull(TestUtils.getPropertyValue(endpoint, "defaultDeliveryMode"));
|
||||
assertFalse(TestUtils.getPropertyValue(endpoint, "lazyConnect", Boolean.class));
|
||||
assertEquals("42",
|
||||
TestUtils.getPropertyValue(endpoint, "delayExpression", org.springframework.expression.Expression.class)
|
||||
.getExpressionString());
|
||||
|
||||
Field amqpTemplateField = ReflectionUtils.findField(AmqpOutboundEndpoint.class, "amqpTemplate");
|
||||
amqpTemplateField.setAccessible(true);
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
exchange-name="si.test.exchange"
|
||||
routing-key="si.test.binding"
|
||||
amqp-template="amqpTemplate"
|
||||
delay-expression="42"
|
||||
auto-startup="false"
|
||||
order="5"
|
||||
return-channel="returnChannel">
|
||||
@@ -92,6 +93,7 @@
|
||||
exchange-name="si.test.exchange"
|
||||
routing-key="si.test.binding"
|
||||
async-template="asyncTemplate"
|
||||
delay-expression="42"
|
||||
auto-startup="false"
|
||||
order="5"
|
||||
return-channel="returnChannel">
|
||||
|
||||
@@ -94,6 +94,9 @@ public class AmqpOutboundGatewayParserTests {
|
||||
|
||||
assertEquals(Long.valueOf(777), sendTimeout);
|
||||
assertTrue(TestUtils.getPropertyValue(gateway, "lazyConnect", Boolean.class));
|
||||
assertEquals("42",
|
||||
TestUtils.getPropertyValue(gateway, "delayExpression", org.springframework.expression.Expression.class)
|
||||
.getExpressionString());
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
|
||||
@@ -16,29 +16,39 @@
|
||||
|
||||
package org.springframework.integration.amqp.outbound;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
import static org.junit.Assert.assertNull;
|
||||
import static org.junit.Assert.assertThat;
|
||||
import static org.mockito.BDDMockito.willAnswer;
|
||||
import static org.mockito.BDDMockito.willDoNothing;
|
||||
import static org.mockito.Matchers.any;
|
||||
import static org.mockito.Matchers.anyString;
|
||||
import static org.mockito.Mockito.doAnswer;
|
||||
import static org.mockito.Matchers.eq;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.spy;
|
||||
import static org.mockito.Mockito.verify;
|
||||
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.mockito.invocation.InvocationOnMock;
|
||||
import org.mockito.stubbing.Answer;
|
||||
import org.mockito.ArgumentCaptor;
|
||||
|
||||
import org.springframework.amqp.core.Message;
|
||||
import org.springframework.amqp.rabbit.AsyncRabbitTemplate;
|
||||
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
|
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
||||
import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer;
|
||||
import org.springframework.amqp.rabbit.support.CorrelationData;
|
||||
import org.springframework.beans.factory.BeanFactory;
|
||||
import org.springframework.integration.amqp.support.DefaultAmqpHeaderMapper;
|
||||
import org.springframework.integration.channel.NullChannel;
|
||||
import org.springframework.integration.channel.QueueChannel;
|
||||
import org.springframework.integration.support.MessageBuilder;
|
||||
import org.springframework.messaging.MessageHeaders;
|
||||
import org.springframework.messaging.support.GenericMessage;
|
||||
import org.springframework.scheduling.TaskScheduler;
|
||||
|
||||
/**
|
||||
* @author Gary Russell
|
||||
@@ -47,6 +57,61 @@ import org.springframework.messaging.MessageHeaders;
|
||||
*/
|
||||
public class OutboundEndpointTests {
|
||||
|
||||
@Test
|
||||
public void testDelayExpression() {
|
||||
ConnectionFactory connectionFactory = mock(ConnectionFactory.class);
|
||||
RabbitTemplate amqpTemplate = spy(new RabbitTemplate(connectionFactory));
|
||||
AmqpOutboundEndpoint endpoint = new AmqpOutboundEndpoint(amqpTemplate);
|
||||
willDoNothing()
|
||||
.given(amqpTemplate).send(anyString(), anyString(), any(Message.class), any(CorrelationData.class));
|
||||
willAnswer(invocation -> invocation.getArgumentAt(2, Message.class))
|
||||
.given(amqpTemplate)
|
||||
.sendAndReceive(anyString(), anyString(), any(Message.class), any(CorrelationData.class));
|
||||
endpoint.setExchangeName("foo");
|
||||
endpoint.setRoutingKey("bar");
|
||||
endpoint.setDelayExpressionString("42");
|
||||
endpoint.setBeanFactory(mock(BeanFactory.class));
|
||||
endpoint.afterPropertiesSet();
|
||||
endpoint.handleMessage(new GenericMessage<>("foo"));
|
||||
ArgumentCaptor<Message> captor = ArgumentCaptor.forClass(Message.class);
|
||||
verify(amqpTemplate).send(eq("foo"), eq("bar"), captor.capture(), any(CorrelationData.class));
|
||||
assertThat(captor.getValue().getMessageProperties().getDelay(), equalTo(42));
|
||||
endpoint.setExpectReply(true);
|
||||
endpoint.setOutputChannel(new NullChannel());
|
||||
endpoint.handleMessage(new GenericMessage<>("foo"));
|
||||
verify(amqpTemplate).sendAndReceive(eq("foo"), eq("bar"), captor.capture(), any(CorrelationData.class));
|
||||
assertThat(captor.getValue().getMessageProperties().getDelay(), equalTo(42));
|
||||
|
||||
endpoint.setDelay(23);
|
||||
endpoint.setRoutingKey("baz");
|
||||
endpoint.afterPropertiesSet();
|
||||
endpoint.handleMessage(new GenericMessage<>("foo"));
|
||||
verify(amqpTemplate).sendAndReceive(eq("foo"), eq("baz"), captor.capture(), any(CorrelationData.class));
|
||||
assertThat(captor.getValue().getMessageProperties().getDelay(), equalTo(23));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAsyncDelayExpression() {
|
||||
ConnectionFactory connectionFactory = mock(ConnectionFactory.class);
|
||||
AsyncRabbitTemplate amqpTemplate = spy(new AsyncRabbitTemplate(new RabbitTemplate(connectionFactory),
|
||||
new SimpleMessageListenerContainer(connectionFactory), "replyTo"));
|
||||
amqpTemplate.setTaskScheduler(mock(TaskScheduler.class));
|
||||
AsyncAmqpOutboundGateway gateway = new AsyncAmqpOutboundGateway(amqpTemplate);
|
||||
willAnswer(
|
||||
invocation -> amqpTemplate.new RabbitMessageFuture("foo", invocation.getArgumentAt(2, Message.class)))
|
||||
.given(amqpTemplate).sendAndReceive(anyString(), anyString(), any(Message.class));
|
||||
gateway.setExchangeName("foo");
|
||||
gateway.setRoutingKey("bar");
|
||||
gateway.setDelayExpressionString("42");
|
||||
gateway.setBeanFactory(mock(BeanFactory.class));
|
||||
gateway.setOutputChannel(new NullChannel());
|
||||
gateway.afterPropertiesSet();
|
||||
ArgumentCaptor<Message> captor = ArgumentCaptor.forClass(Message.class);
|
||||
gateway.handleMessage(new GenericMessage<>("foo"));
|
||||
verify(amqpTemplate).sendAndReceive(eq("foo"), eq("bar"), captor.capture());
|
||||
assertThat(captor.getValue().getMessageProperties().getDelay(), equalTo(42));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testHeaderMapperWinsAdapter() {
|
||||
ConnectionFactory connectionFactory = mock(ConnectionFactory.class);
|
||||
@@ -54,14 +119,10 @@ public class OutboundEndpointTests {
|
||||
AmqpOutboundEndpoint endpoint = new AmqpOutboundEndpoint(amqpTemplate);
|
||||
final AtomicReference<Message> amqpMessage =
|
||||
new AtomicReference<Message>();
|
||||
doAnswer(new Answer<Object>() {
|
||||
|
||||
@Override
|
||||
public Object answer(InvocationOnMock invocation) throws Throwable {
|
||||
amqpMessage.set((Message) invocation.getArguments()[2]);
|
||||
return null;
|
||||
}
|
||||
}).when(amqpTemplate).send(anyString(), anyString(), any(Message.class),
|
||||
willAnswer(invocation -> {
|
||||
amqpMessage.set((Message) invocation.getArguments()[2]);
|
||||
return null;
|
||||
}).given(amqpTemplate).send(anyString(), anyString(), any(Message.class),
|
||||
any(CorrelationData.class));
|
||||
org.springframework.messaging.Message<?> message = MessageBuilder.withPayload("foo")
|
||||
.setHeader(MessageHeaders.CONTENT_TYPE, "bar")
|
||||
@@ -82,14 +143,10 @@ public class OutboundEndpointTests {
|
||||
endpoint.setHeaderMapper(mapper);
|
||||
final AtomicReference<Message> amqpMessage =
|
||||
new AtomicReference<Message>();
|
||||
doAnswer(new Answer<Object>() {
|
||||
|
||||
@Override
|
||||
public Object answer(InvocationOnMock invocation) throws Throwable {
|
||||
amqpMessage.set((Message) invocation.getArguments()[2]);
|
||||
return null;
|
||||
}
|
||||
}).when(amqpTemplate)
|
||||
willAnswer(invocation -> {
|
||||
amqpMessage.set((Message) invocation.getArguments()[2]);
|
||||
return null;
|
||||
}).given(amqpTemplate)
|
||||
.doSendAndReceiveWithTemporary(anyString(), anyString(), any(Message.class), any(CorrelationData.class));
|
||||
org.springframework.messaging.Message<?> message = MessageBuilder.withPayload("foo")
|
||||
.setHeader(MessageHeaders.CONTENT_TYPE, "bar")
|
||||
|
||||
@@ -49,6 +49,7 @@ import org.springframework.util.MimeTypeUtils;
|
||||
*/
|
||||
public class DefaultAmqpHeaderMapperTests {
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Test
|
||||
public void fromHeaders() {
|
||||
DefaultAmqpHeaderMapper headerMapper = DefaultAmqpHeaderMapper.outboundMapper();
|
||||
@@ -149,6 +150,7 @@ public class DefaultAmqpHeaderMapperTests {
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Test
|
||||
public void toHeaders() {
|
||||
DefaultAmqpHeaderMapper headerMapper = DefaultAmqpHeaderMapper.inboundMapper();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -69,7 +69,7 @@ public class ExpressionEvaluatingMessageProcessor<T> extends AbstractMessageProc
|
||||
*/
|
||||
@Override
|
||||
public T processMessage(Message<?> message) {
|
||||
return this.evaluateExpression(this.expression, message, this.expectedType);
|
||||
return evaluateExpression(this.expression, message, this.expectedType);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -1149,7 +1149,14 @@ To configure a default user id for outbound messages, configure it on a `RabbitT
|
||||
Similarly, to set the user id property on replies, inject an appropriately configured template into the inbound gateway.
|
||||
See the http://docs.spring.io/spring-amqp/reference/html/_reference.html#template-user-id[Spring AMQP documentation] for more information.
|
||||
|
||||
[[amqp-delay]]
|
||||
=== Delayed Message Exchange
|
||||
|
||||
Spring AMQP supports the http://docs.spring.io/spring-amqp/reference/html/_reference.html#delayed-message-exchange[RabbitMQ Delayed Message Exchange Plugin].
|
||||
For inbound messages, the `x-delay` header is mapped to the `AmqpHeaders.RECEIVED_DELAY` header.
|
||||
Setting the `AMQPHeaders.DELAY` header will cause the corresponding `x-delay` header to be set in outbound messages.
|
||||
You can also specify the `delay` and `delayExpression` properties on outbound endpoints (`delay-expression` when using XML configuration).
|
||||
This takes precedence over the `AmqpHeaders.DELAY` header.
|
||||
|
||||
[[amqp-channels]]
|
||||
=== AMQP Backed Message Channels
|
||||
|
||||
@@ -295,3 +295,8 @@ See <<web-sockets>> for more information.
|
||||
|
||||
The `BarrierMessageHandler` now supports a discard channel to which late-arriving trigger messages are sent.
|
||||
See <<barrier>> for more information.
|
||||
|
||||
==== AMQP Changes
|
||||
|
||||
The AMQP outbound endpoints now support setting a delay expression for when using the RabbitMQ Delayed Message Exchange plugin.
|
||||
See <<amqp-delay>> for more information.
|
||||
|
||||
Reference in New Issue
Block a user