Package io.deephaven.jpy
Interface SysModule
- All Superinterfaces:
AutoCloseable
Java proxy module for sys.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
static SysModule
create()
int
Deprecated.int
getrefcount
(org.jpy.PyObject pyObject) Get the reference count for an object.
-
Method Details
-
create
-
getrefcount
Deprecated.Users should strongly prefer to usegetrefcount(PyObject)
.Get the reference count for an object.- Parameters:
o
- the object- Returns:
- the reference count of the object
- See Also:
-
getrefcount
int getrefcount(org.jpy.PyObject pyObject) Get the reference count for an object.- Parameters:
pyObject
- the python object- Returns:
- the reference count of the object
- See Also:
-
close
void close()- Specified by:
close
in interfaceAutoCloseable
-
getrefcount(PyObject)
.