1 21 22 package org.jacorb.notification.engine; 23 24 import org.jacorb.notification.interfaces.IProxyPushSupplier; 25 26 30 public class AlwaysDisposeRetryStrategyFactory implements RetryStrategyFactory 31 { 32 public RetryStrategy newRetryStrategy(IProxyPushSupplier messageConsumer, 33 PushOperation pushOperation) 34 { 35 return new AlwaysDisposeRetryStrategy(messageConsumer, pushOperation); 36 } 37 } 38 | Popular Tags |