Ejemplo n.º 1
0
 public void notifyTxError() {
   if (txListener != null) {
     try {
       txListener.onError();
     } catch (Throwable e) {
       LOGGER.error("Error in listener", e);
     }
   }
 }
Ejemplo n.º 2
0
 private void notifyTxListener() {
   if (txListener != null) {
     txListener.onCommit();
   }
 }