This content has been marked as final.
Show 2 replies
-
1. Re: JbpmSessionFactory
Tom Baeyens Oct 20, 2005 4:08 AM (in response to Joshua Tree)no.
it means that a JbpmSessionFactory doesn't use any static data without proper synchronization.
so multiple threads can access the same JbpmSessionFactory without problem.
Once a thread has obtained a JbpmSession, it can issue queries and updates concurrently with other JbpmSessions. That concurrency will be propagated to the database. DB's are good at handling this concurrency stuff :)
regards, tom. -
2. Re: JbpmSessionFactory
Joshua Tree Oct 20, 2005 5:33 AM (in response to Joshua Tree)Thanks Tom
Joshua