Try OpenEdge Now
skip to main content
BP Server Developer's Guide
JMS based event publisher : Event sender
 

Event sender

The BP Server provides default implementation of the Sender interface using JMS. All sender classes should implement the Sender interface. EventReader then invokes publish(CommonEvent) method on each sender class specified in the configuration file.
import com.savvion.sbm.util.eventreader.Sender;
public interface Sender {
    public void publish(CommonEvent evt) throws Exception;
}
* JMS sender implementation
* User-defined sender implementation