Re post #1 : The pattern for locks is this:

http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/locks/Lock.html


  | Lock l = ...; 
  |      l.lock();
  |      try {
  |          // access the resource protected by this lock
  |      } finally {
  |          l.unlock();
  |      }
  |  

Mr. Komori,

If you have a patch, please create an issue on jira.jboss.org and I can review 
the patch and possibly apply it if it is acceptable.


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4013972
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to