Package org.python.core
Interface ContextManager
-
- All Known Implementing Classes:
Condition
,ContextGuard
,Lock
,PyConnection
,PyCursor
,PyExtendedCursor
,PyLock
,RLock
public interface ContextManager
APyObject
that provides__enter__
and__exit__
methods for use in the with-statement. Implementing context managers can then be potentially inlined by the JVM.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PyObject
__enter__(ThreadState ts)
boolean
__exit__(ThreadState ts, PyException exception)
-
-
-
Method Detail
-
__enter__
PyObject __enter__(ThreadState ts)
-
__exit__
boolean __exit__(ThreadState ts, PyException exception)
-
-