Beispiel #1
0
 /**
  * Determines whether the default processing for this event will be executed. By default, the Mule
  * server will route events according to a components configuration. The user can override this
  * behaviour by obtaining a reference to the Event context, either by implementing <code>
  * org.mule.umo.lifecycle.Callable</code> or calling <code>UMOManager.getEventContext</code> to
  * obtain the UMOEventContext for the current thread. The user can programmatically control how
  * events are dispached.
  *
  * @param stopFurtherProcessing the value to set.
  */
 public void setStopFurtherProcessing(boolean stopFurtherProcessing) {
   RequestContext.getEvent().setStopFurtherProcessing(stopFurtherProcessing);
 }
Beispiel #2
0
 /**
  * Determines whether the default processing for this event will be executed. By default, the Mule
  * server will route events according to a components configuration. The user can override this
  * behaviour by obtaining a reference to the Event context, either by implementing <code>
  * org.mule.umo.lifecycle.Callable</code> or calling <code>UMOManager.getEventContext</code> to
  * obtain the UMOEventContext for the current thread. The user can programmatically control how
  * events are dispached.
  *
  * @return Returns true is the user has set stopFurtherProcessing.
  * @see org.mule.umo.manager.UMOManager
  * @see org.mule.umo.UMOEventContext
  * @see org.mule.umo.lifecycle.Callable
  */
 public boolean isStopFurtherProcessing() {
   return RequestContext.getEvent().isStopFurtherProcessing();
 }