Click or drag to resize

JVMBridgeBaseMonitorExit Method

Exits the monitor associated with the underlying with this IJVMBridgeBase

Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.2.250821-1d39389489804d6a3c7a28203f93adc3f9dc1870
Syntax
public void MonitorExit()

Implements

IJVMBridgeBaseMonitorExit
Remarks
The current thread must be the owner of the monitor associated with the underlying Java object referred to by IJVMBridgeBase. The thread decrements the counter indicating the number of times it has entered this monitor. If the value of the counter becomes zero, the current thread releases the monitor. Native code must not use MonitorExit to exit a monitor entered through a synchronized method or a monitorenter Java virtual machine instruction.
See Also