1 10 11 package org.mule.umo.routing; 12 13 import org.mule.umo.UMOEvent; 14 import org.mule.umo.UMOMessage; 15 16 26 27 public interface UMOResponseRouter extends UMORouter 28 { 29 39 void process(UMOEvent event) throws RoutingException; 40 41 55 UMOMessage getResponse(UMOMessage message) throws RoutingException; 56 57 63 void setTimeout(int timeout); 64 65 71 int getTimeout(); 72 } 73 | Popular Tags |