public abstract class NativeProxy
extends java.lang.Object
implements java.lang.AutoCloseable
| Modifier and Type | Field and Description |
|---|---|
static org.slf4j.Logger |
logger |
| Constructor and Description |
|---|
NativeProxy(byte[] pointer)
Create a NativeProxy from a byte array representing a C pointer.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
assertRegistryEmpty()
Assert that the Registry is empty.
|
void |
clear()
Call clear(...) to clear the value of the pointer, setting it to null.
|
void |
close()
Close this NativeProxy by releasing its native resources if they
haven't otherwise been freed.
|
boolean |
equals(java.lang.Object obj)
Deep comparison operator.
|
protected void |
finalize()
Deprecated.
finalize() in Object has been deprecated. Use close(...)
from the AutoCloseable interface instead.
|
protected abstract void |
releaseNativeResources()
Release the native resources used by this proxy.
|
public NativeProxy(byte[] pointer)
pointer - A byte array, created with JSS_ptrToByteArray, that
contains a pointer pointing to a native data structure. The
NativeProxy instance acts as a proxy for that native data structure.public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj has the same underlying native
pointer. false if the obj is null or has
a different underlying native pointer.protected abstract void releaseNativeResources()
You don't call this method; NativeProxy.finalize() or close() calls it for you.
If you free these resources explicitly, call clear(); instead.@Deprecated
protected void finalize()
throws java.lang.Throwable
finalize in class java.lang.Objectjava.lang.Throwablepublic final void close()
throws java.lang.Exception
close in interface java.lang.AutoCloseablejava.lang.Exceptionpublic final void clear()
public static void assertRegistryEmpty()