INT-3913 Remove/resolve deprecation from the past

JIRA: https://jira.spring.io/browse/INT-3913

* Remove deprecated classes and methods/constructors, deprecated XML attributes
* Remove `TcpConnectionEventListeningMessageProducer` and rework tests logic to the `ApplicationEventListeningMessageProducer`
* Fix several typos
* Remove/rework deprecated entities mentioning
This commit is contained in:
Artem Bilan
2016-08-26 12:56:11 -04:00
committed by Gary Russell
parent ea4763faa9
commit eaed954458
87 changed files with 106 additions and 1765 deletions

View File

@@ -130,16 +130,6 @@ public class RedisQueueInboundGateway extends MessagingGatewaySupport implements
this.receiveTimeout = receiveTimeout;
}
/**
* @param stopTimeout the timeout to block {@link #doStop()} until the last message
* will be processed or this timeout is reached. Should be less than or equal to {@link #receiveTimeout}
* @deprecated since {@literal 4.3} with no-op in favor of delayer call {@code callback.run()}
* in the {@link #stop(Runnable)}.
*/
@Deprecated
public void setStopTimeout(long stopTimeout) {
}
public void setTaskExecutor(Executor taskExecutor) {
this.taskExecutor = taskExecutor;
}

View File

@@ -136,17 +136,6 @@ public class RedisQueueMessageDrivenEndpoint extends MessageProducerSupport impl
this.receiveTimeout = receiveTimeout;
}
/**
* @param stopTimeout the timeout to block {@link #doStop()} until the last message will be processed
* or this timeout is reached. Should be less than or equal to {@link #receiveTimeout}
* @since 4.0.3
* @deprecated since {@literal 4.3} with no-op in favor of delayer call {@code callback.run()}
* in the {@link #stop(Runnable)}.
*/
@Deprecated
public void setStopTimeout(long stopTimeout) {
}
public void setTaskExecutor(Executor taskExecutor) {
this.taskExecutor = taskExecutor;
}

View File

@@ -88,15 +88,6 @@ public class RedisOutboundGateway extends AbstractReplyProducingMessageHandler {
this.commandExpression = EXPRESSION_PARSER.parseExpression(commandExpression);
}
/**
* @param commandExpression the expression to set.
* @deprecated in favor of {@link #setCommandExpression}.
*/
@Deprecated
public void setExpressionCommand(Expression commandExpression) {
setCommandExpression(commandExpression);
}
public void setArgumentsStrategy(ArgumentsStrategy argumentsStrategy) {
this.argumentsStrategy = argumentsStrategy;
}