
Chapter 12. Implementing inbound processing and event handling 365
public void rollbackWork() throws javax.resource.ResourceException,
javax.resource.spi.CommException {
// TODO Auto-generated method stub
}
public void commitWork() throws javax.resource.ResourceException,
javax.resource.spi.CommException {
// TODO Auto-generated method stub
}
12.6.8 Full code of RMEventStore
Example 12-11 lists the complete implementation of RMEventStore.
Example 12-11 RMEventStore implementation
package com.ibm.itso.sab511.inbound;
import java.rmi.RemoteException;
import java.sql.Timestamp;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Collections; ...