1 21 22 package org.jacorb.notification.engine; 23 24 import org.jacorb.notification.interfaces.IProxyPushSupplier; 25 26 30 public class AlwaysDisposeRetryStrategy extends AbstractRetryStrategy 31 { 32 public AlwaysDisposeRetryStrategy(IProxyPushSupplier pushSupplier, PushOperation operation) 33 { 34 super(pushSupplier, operation); 35 } 36 37 protected long getTimeToWait() 38 { 39 return 0; 40 } 41 42 protected void retryInternal() throws RetryException 43 { 44 pushSupplier_.destroy(); 45 dispose(); 46 } 47 } 48 | Popular Tags |