Package org.jbpm.executor.ejb.impl
Class ExecutorEventSupportEJBImpl
- java.lang.Object
-
- org.jbpm.executor.ejb.impl.ExecutorEventSupportEJBImpl
-
- All Implemented Interfaces:
Externalizable,Serializable,org.jbpm.executor.impl.event.ExecutorEventSupport
public class ExecutorEventSupportEJBImpl extends Object implements org.jbpm.executor.impl.event.ExecutorEventSupport
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutorEventSupportEJBImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddEventListener(org.jbpm.executor.AsynchronousJobListener listener)voidfireAfterJobCancelled(org.kie.api.executor.RequestInfo job, Throwable exception)voidfireAfterJobExecuted(org.kie.api.executor.RequestInfo job, Throwable exception)voidfireAfterJobScheduled(org.kie.api.executor.RequestInfo job, Throwable exception)voidfireBeforeJobCancelled(org.kie.api.executor.RequestInfo job, Throwable exception)voidfireBeforeJobExecuted(org.kie.api.executor.RequestInfo job, Throwable exception)voidfireBeforeJobScheduled(org.kie.api.executor.RequestInfo job, Throwable exception)List<org.jbpm.executor.AsynchronousJobListener>getEventListeners()voidreadExternal(ObjectInput in)voidremoveEventListener(Class cls)voidremoveEventListener(org.jbpm.executor.AsynchronousJobListener listener)voidwriteExternal(ObjectOutput out)
-
-
-
Method Detail
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
addEventListener
public void addEventListener(org.jbpm.executor.AsynchronousJobListener listener)
- Specified by:
addEventListenerin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
removeEventListener
public void removeEventListener(Class cls)
- Specified by:
removeEventListenerin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
removeEventListener
public void removeEventListener(org.jbpm.executor.AsynchronousJobListener listener)
- Specified by:
removeEventListenerin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
getEventListeners
public List<org.jbpm.executor.AsynchronousJobListener> getEventListeners()
- Specified by:
getEventListenersin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
fireBeforeJobScheduled
public void fireBeforeJobScheduled(org.kie.api.executor.RequestInfo job, Throwable exception)- Specified by:
fireBeforeJobScheduledin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
fireBeforeJobExecuted
public void fireBeforeJobExecuted(org.kie.api.executor.RequestInfo job, Throwable exception)- Specified by:
fireBeforeJobExecutedin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
fireBeforeJobCancelled
public void fireBeforeJobCancelled(org.kie.api.executor.RequestInfo job, Throwable exception)- Specified by:
fireBeforeJobCancelledin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
fireAfterJobScheduled
public void fireAfterJobScheduled(org.kie.api.executor.RequestInfo job, Throwable exception)- Specified by:
fireAfterJobScheduledin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
fireAfterJobExecuted
public void fireAfterJobExecuted(org.kie.api.executor.RequestInfo job, Throwable exception)- Specified by:
fireAfterJobExecutedin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
fireAfterJobCancelled
public void fireAfterJobCancelled(org.kie.api.executor.RequestInfo job, Throwable exception)- Specified by:
fireAfterJobCancelledin interfaceorg.jbpm.executor.impl.event.ExecutorEventSupport
-
-