示例#1
0
 /**
  * Determines whether the was sent synchrounously or not
  *
  * @return true if the event is synchronous
  */
 public boolean isSynchronous() {
   return event.isSynchronous();
 }
示例#2
0
 public Object onCall(UMOEvent event) throws UMOException {
   return routeMessage(
       new MuleMessage(event.getTransformedMessage(), event.getMessage()), event.isSynchronous());
 }