Examples of transitToAutoManagedConnection()


Examples of com.cloud.utils.db.Transaction.transitToAutoManagedConnection()

                        queueNotification(new ClusterManagerMessage(ClusterManagerMessage.MessageType.nodeIsolated));
                    }

                    invalidHeartbeatConnection();
                } finally {
                    txn.transitToAutoManagedConnection(Transaction.CLOUD_DB);                        
                    txn.close("ClusterHeartBeat");            
                }
            }
        };
    }
View Full Code Here

Examples of com.cloud.utils.db.TransactionLegacy.transitToAutoManagedConnection()

                    s_logger.error("Unexpected exception in cluster heartbeat", e);
                    if (isRootCauseConnectionRelated(e.getCause())) {
                        invalidHeartbeatConnection();
                    }
                } finally {
                    txn.transitToAutoManagedConnection(TransactionLegacy.CLOUD_DB);
                    txn.close("ClusterHeartbeat");
                }
            }
        };
    }
View Full Code Here

Examples of com.cloud.utils.db.TransactionLegacy.transitToAutoManagedConnection()

                    s_logger.error("Unexpected exception in cluster heartbeat", e);
                    if(isRootCauseConnectionRelated(e.getCause())) {
                        invalidHeartbeatConnection();
                    }
                } finally {
                    txn.transitToAutoManagedConnection(TransactionLegacy.CLOUD_DB);
                    txn.close("ClusterHeartbeat");
                }
            }
        };
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.