We create a transacted session with:
QueueSession session = conn.createQueueSession(true, -1);
It means all the messages created in that session are apart of an atomic unit 
and there can be none interposing in that order. However the starting of a 
transacted session doesn't take a destination as a parameter. So it couldn't be 
blocking at this time, other destinations should be able to accept whatever 
messages they please. 
So is the transaction started when we call 
QueueSender senderJMS = session.createSender(Destination);
or in fact is not really a transaction at all so other "transactions" started 
after this one but who finished before it, actualy get their group of messages 
before this transaction's group?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881159#3881159

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881159


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to