Examples of fireProbeOnException()


Examples of org.glassfish.flashlight.provider.FlashlightProbe.fireProbeOnException()

   public static void invokeProbeOnException(Object exceptionValue, int id,
                        Object states) {
       FlashlightProbe probe = probeMap.get(id);
       if (probe != null) {
           try {
               probe.fireProbeOnException(exceptionValue, (ArrayList<FlashlightProbe.ProbeInvokeState>)states);
           } catch (ClassCastException e) {
               // Make sure the state we got was really ok, internal error if that happens
           }
       }
   }
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.