synchronized int getSqlTransactionCount()

in aws-xray-agent/src/main/java/com/amazonaws/xray/agent/runtime/handlers/downstream/SqlHandler.java [94:102]


    synchronized int getSqlTransactionCount() {
        Integer count = (Integer) TransactionContext.getMetadata(SQL_SUBSEGMENT_COUNT_KEY);
        if (count == null) {
            count = 0;
            setSqlTransactionCount(count);
        }

        return count;
    }