Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
TX.java
Package: blacktie-2.0.0.M3-src.zip [view]
Upload User: xfwatch
Upload Date: 2020-12-14
Package Size: 872k
Code Size: 1k
Category:
MiddleWare
Development Platform:
Java
- package org.jboss.blacktie.jatmibroker.tx;
- public class TX {
- public static final int TX_OK = -1;// 0;
- public static final int TX_ROLLBACK = -1;// -2;
- public static final int TX_ROLLBACK_ONLY = -1;// = 2;
- public static int tx_begin() {
- return TX_OK;
- /*
- * try { JABSessionAttributes aJabSessionAttributes = new
- * JABSessionAttributes( null); JABSession aJabSession = new
- * JABSession(aJabSessionAttributes); new JABTransaction(aJabSession,
- * 5000); return TX_OK; } catch (Throwable t) { return -1; }
- */
- }
- public static int tx_open() {
- return TX_OK;
- }
- public static int tx_info(TXINFO txinfo) {
- txinfo.transaction_state = TX_ROLLBACK_ONLY;
- return TX_OK;
- /*
- * try { Status status = JABTransaction.current().getStatus(); if
- * (status.value() == Status._StatusMarkedRollback) {
- * txinfo.transaction_state = TX_ROLLBACK_ONLY; } else {
- * txinfo.transaction_state = -1; } return TX_OK; } catch (Throwable t)
- * { txinfo.transaction_state = -1; return -1; }
- */
- }
- public static int tx_commit() {
- return TX_ROLLBACK;
- /*
- * try { JABTransaction.current().commit(); return TX_OK; } catch
- * (JABException e) { return TX_ROLLBACK; }
- */
- }
- }