From 9dd849267320fae88b2cd4786a1c82dd963437be Mon Sep 17 00:00:00 2001 From: David Syer Date: Thu, 6 May 2010 13:23:41 +0000 Subject: [PATCH] INT-958: add javadocs --- .../integration/store/MessageGroupStoreReaper.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/org.springframework.integration/src/main/java/org/springframework/integration/store/MessageGroupStoreReaper.java b/org.springframework.integration/src/main/java/org/springframework/integration/store/MessageGroupStoreReaper.java index 176223ef15..51a613903a 100644 --- a/org.springframework.integration/src/main/java/org/springframework/integration/store/MessageGroupStoreReaper.java +++ b/org.springframework.integration/src/main/java/org/springframework/integration/store/MessageGroupStoreReaper.java @@ -22,8 +22,8 @@ import org.springframework.util.Assert; /** * Convenient configurable component to allow explicit timed expiry of {@link MessageGroup} instances in a - * {@link MessageGroupStore}. This component provides a no-args {@link #run()} method that is useful for remote or - * timed execution and a {@link #destroy()} method that can optionally be called on shutdown. + * {@link MessageGroupStore}. This component provides a no-args {@link #run()} method that is useful for remote or timed + * execution and a {@link #destroy()} method that can optionally be called on shutdown. * * @author Dave Syer * @@ -54,6 +54,9 @@ public class MessageGroupStoreReaper implements Runnable, DisposableBean, Initia } /** + * Timeout in milliseconds (default -1). If negative then no groups ever time out. If greater than zero then all + * groups older than that value are expired when this component is {@link #run()}. + * * @param timeout the timeout to set */ public void setTimeout(long timeout) {