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