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