Interface IJVMWrapperStatistics
- Namespace
- MASES.JCOBridge.C2JBridge.JVMInterop
- Assembly
- C2JBridge.dll
Public accessor for statistics about JVM JNI pressure
public interface IJVMWrapperStatistics
- Extension Methods
Properties
ExceptionJNICalls
Total exceptions raised from JNI methods invocations
long ExceptionJNICalls { get; }
Property Value
GlobalRefCount
Current global reference count
long GlobalRefCount { get; }
Property Value
LocalRefCount
Current local reference count
long LocalRefCount { get; }
Property Value
TotalJNICalls
Total invocations of JNI methods
long TotalJNICalls { get; }
Property Value
TotalJavaVMCalls
Total invocations of Java VM methods
long TotalJavaVMCalls { get; }
Property Value
TotalTimeInJNICalls
Total time spent in invocations of JNI methods
TimeSpan TotalTimeInJNICalls { get; }
Property Value
Uptime
Application up-time in milliseconds
long Uptime { get; }
Property Value
WeakGlobalRefCount
Current weak global reference count
long WeakGlobalRefCount { get; }