public class

Perflog

extends Object
java.lang.Object
   ↳ com.pnfsoftware.jeb.core.Perflog

Class Overview

Performance counters, reserved for internal debug use.

Summary

Public Methods
static void count()
A method that wish to record its call should call count.
static Set<String> getCounterNames()
static ReferenceCounter<String> getFineGrainedCounter(String key)
static Map<String, ReferenceCounter<String>> getFineGrainedCounters()
static ReferenceCounter<String> getGlobalCounters()
static boolean isEmpty()
static void reset()
static void reset(String key)
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static void count ()

A method that wish to record its call should call count. Do not wrap this method in utility code. The source method must call count directly.

Usage: "com.pnfsoftware.jeb.core.Perflog.count(); //[<:DEBUG]" at method entry point. Results can be seen in "Internal" menu in UI.

public static Set<String> getCounterNames ()

public static ReferenceCounter<String> getFineGrainedCounter (String key)

public static Map<String, ReferenceCounter<String>> getFineGrainedCounters ()

public static ReferenceCounter<String> getGlobalCounters ()

public static boolean isEmpty ()

public static void reset ()

public static void reset (String key)