Here you can find the source of getGetPendingWrTransaction()
public static int getGetPendingWrTransaction()
//package com.java2s; /*//from w ww . j a v a 2s .c om * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ import java.util.concurrent.atomic.AtomicInteger; public class Main { private static AtomicInteger pendingWrTransaction = new AtomicInteger(0); public static int getGetPendingWrTransaction() { return pendingWrTransaction.get(); } }