This commit is contained in:
Dejan Bosanac 2014-06-02 13:22:25 +02:00
parent 7bfbce9a54
commit 3ba129561c
1 changed files with 6 additions and 0 deletions

View File

@ -87,9 +87,15 @@ public class RetainedMessageSubscriptionRecoveryPolicy implements SubscriptionRe
}
public void start() throws Exception {
if (wrapped != null) {
wrapped.start();
}
}
public void stop() throws Exception {
if (wrapped != null) {
wrapped.stop();
}
}
public Message[] browse(ActiveMQDestination destination) throws Exception {