1 10 11 package org.mule.providers; 12 13 import org.mule.umo.UMOException; 14 import org.mule.umo.UMOMessage; 15 import org.mule.umo.UMOTransaction; 16 17 import java.io.OutputStream ; 18 19 27 public interface InternalMessageListener 28 { 29 public UMOMessage onMessage(UMOMessage message, 30 UMOTransaction trans, 31 boolean synchronous, 32 OutputStream outputStream) throws UMOException; 33 34 } 35 | Popular Tags |