JMS SingleConnectionFactory uses minimized number of start calls (for Oracle AQ; SPR-5987)

This commit is contained in:
Juergen Hoeller 2009-08-08 01:01:39 +00:00
parent 6b824d9af7
commit 83bd56c6de
1 changed files with 4 additions and 2 deletions

View File

@ -510,9 +510,11 @@ public class SingleConnectionFactory
else if (method.getName().equals("start")) {
// Handle start method: track started state.
synchronized (connectionMonitor) {
if (!started) {
this.target.start();
started = true;
}
}
return null;
}
else if (method.getName().equals("stop")) {