SimpleMessagingGateway's default 'replyTimeout' is now -1 for "indefinite" (matches the default of MessageExchangeTemplate).

This commit is contained in:
Mark Fisher
2008-08-14 10:29:29 +00:00
parent 6cee30bf78
commit a99b03c387

View File

@@ -49,7 +49,7 @@ public class SimpleMessagingGateway extends MessagingGatewaySupport implements M
private volatile PollableChannel replyChannel;
private volatile long replyTimeout = 5000;
private volatile long replyTimeout = -1;
private volatile int replyMapCapacity = 100;