Example usage for org.springframework.jdbc.datasource ConnectionHolder hashCode

List of usage examples for org.springframework.jdbc.datasource ConnectionHolder hashCode

Introduction

In this page you can find the example usage for org.springframework.jdbc.datasource ConnectionHolder hashCode.

Prototype

@HotSpotIntrinsicCandidate
public native int hashCode();

Source Link

Document

Returns a hash code value for the object.

Usage

From source file:com.avaje.ebean.springsupport.txn.SpringJdbcTransaction.java

public SpringJdbcTransaction(ConnectionHolder holder, TransactionManager manager) {
    super("s" + holder.hashCode(), true, holder.getConnection(), manager);
    this.holder = holder;
}