jnr.ffi.provider.ClosureManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
The newest version!
package jnr.ffi.provider;
/**
*
*/
public interface ClosureManager {
public abstract T newClosure(Class extends T> closureClass, T instance);
public abstract jnr.ffi.Pointer getClosurePointer(Class extends T> closureClass, T instance);
}