Package de.uplanet.lucy.server.workflow
Interface ISupportAfterStopEvent
- All Known Implementing Classes:
AbstractIMAPFolderWorkflowEventSource,AbstractJMSWorkflowEventSource,ExchangeOnlineIMAPFolderPollingWorkflowEventSource,FileSystemWorkflowEventSource,IMAPFolderPollingWorkflowEventSource,JMSQueueWorkflowEventSource,JMSTopicWorkflowEventSource,MaildirWorkflowEventSource,MQTTWorkflowEventSource,UDPWorkflowEventSource
public interface ISupportAfterStopEvent
This interface is implemented by workflow objects that support sending events
after a certain activity has been stopped.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanThis property determines if an after-stop event should be sent.voidsetSendAfterStopEvent(boolean p_bSendAfterStopEvent) This property determines if an after-stop event should be sent.
-
Method Details
-
isSendAfterStopEvent
boolean isSendAfterStopEvent()This property determines if an after-stop event should be sent.- Returns:
trueif an event should be sent after the workflow object's activity has been stopped, orfalseotherwise.
-
setSendAfterStopEvent
void setSendAfterStopEvent(boolean p_bSendAfterStopEvent) This property determines if an after-stop event should be sent.- Parameters:
p_bSendAfterStopEvent-trueif an event should be sent after the workflow object's activity has been stopped, orfalseotherwise.
-