HHH-3131 : ActionQueue.hasAfterTransactionActions
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14356 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
9c55f3715c
commit
4a30d2b836
|
@ -375,6 +375,10 @@ public class ActionQueue {
|
|||
}
|
||||
}
|
||||
|
||||
public boolean hasAfterTransactionActions() {
|
||||
return executions.size() > 0;
|
||||
}
|
||||
|
||||
public boolean hasAnyQueuedActions() {
|
||||
return updates.size() > 0 ||
|
||||
insertions.size() > 0 ||
|
||||
|
|
Loading…
Reference in New Issue