-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: How to interrupt(stop) the transction while doing the proces
PostPosted: Wed Nov 27, 2013 5:24 am 
Newbie

Joined: Thu Sep 22, 2011 9:06 am
Posts: 16
I have to interrupt(stop) the tranaction when its take longer time. I am using thread local to create new session per request.
The process is one request to create the session and commit the transaction. Meanwhile i need to interrupt the transaction after
transaction is created.

Session session = HibernateSessionFactory.createNewSession();
Transaction tran=session.beginTransaction();
................
...............
tran.commit();
My requirement is , i have sent one more request to cancel the transaction. If the transaction is already completed, i just ignore the cancel.
Otherwise, i need to stop the tranasction if it will take longer time.
Session session = HibernateSessionFactory.createNewSession();
Transaction tran=session.beginTransaction();
................
...............//Need to stop the transaction before commit!
...............
tran.commit();
Is it possible? How to achieve this work?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
cron
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.