1 21 22 package org.jacorb.notification.interfaces; 23 24 import org.jacorb.notification.engine.PushTaskExecutor; 25 26 27 public interface IProxyPushSupplier extends MessageConsumer, CallbackingDisposable 28 { 29 33 void pushPendingData(); 34 35 40 boolean hasPendingData(); 41 42 46 void disableDelivery(); 47 48 51 void resetErrorCounter(); 52 53 54 57 int incErrorCounter(); 58 59 62 boolean isRetryAllowed(); 63 64 void schedulePush(PushTaskExecutor.PushTask pushTask); 65 } 66 | Popular Tags |