TestRollbackOnlyTprecvTPEVDISCONIMMService.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:1k
源码类别:

中间件编程

开发平台:

Java

  1. package org.jboss.blacktie.jatmibroker.tx;
  2. import org.apache.log4j.LogManager;
  3. import org.apache.log4j.Logger;
  4. import org.jboss.blacktie.jatmibroker.xatmi.BlacktieService;
  5. import org.jboss.blacktie.jatmibroker.xatmi.Buffer;
  6. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  7. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  8. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  9. import org.jboss.blacktie.jatmibroker.xatmi.TPSVCINFO;
  10. public class TestRollbackOnlyTprecvTPEVDISCONIMMService implements
  11. BlacktieService {
  12. private static final Logger log = LogManager
  13. .getLogger(TestRollbackOnlyTprecvTPEVDISCONIMMService.class);
  14. public Response tpservice(TPSVCINFO svcinfo) {
  15. try {
  16. log.info("test_tprecv_TPEV_DISCONIMM_service");
  17. Buffer status = svcinfo.getSession().tprecv(0);
  18. TXINFO txinfo = new TXINFO();
  19. int inTx = TX.tx_info(txinfo);
  20. boolean rbkOnly = (txinfo.transaction_state == TX.TX_ROLLBACK_ONLY);
  21. log.info("status=%d, inTx=%d, rbkOnly=%d" + status + " " + inTx
  22. + " " + rbkOnly);
  23. return null;
  24. } catch (ConnectionException e) {
  25. return new Response(Connection.TPFAIL, Connection.TPEITYPE, null,
  26. 0, 0);
  27. }
  28. }
  29. }