Java AtomicInteger getCriticalExceptionCount()

Here you can find the source of getCriticalExceptionCount()

Description

get Critical Exception Count

License

Apache License

Declaration

public static int getCriticalExceptionCount() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.concurrent.atomic.AtomicInteger;

public class Main {
    private static AtomicInteger criticalCount = new AtomicInteger();

    public static int getCriticalExceptionCount() {
        int ret = criticalCount.get();
        return ret;
    }//from  w w w  .  j  av a 2 s .c o  m
}

Related

  1. encodeMap(Map map)
  2. generateUniqueId()
  3. getAllocationFailureCount()
  4. getAndResetInvocationCount()
  5. getAndResetInvocationCount()
  6. getExceptionCountMap()
  7. getFailedMiddlePartNumbers(PartListing partListing)
  8. getGetPendingWrTransaction()
  9. getGuid(Object clazz)