| java.lang.Object java.lang.ClassLoader com.uwyn.rife.continuations.basic.BasicContinuableClassLoader
BasicContinuableClassLoader | public class BasicContinuableClassLoader extends ClassLoader implements ClassBytesProvider(Code) | | Classloader implementation that will transform bytecode for classes that
should receive the continuations functionalities.
Note that this is a basic classloader implementation. For your own
application you should probably create your own or at least read over
the source code of this one. It's even better to not use a custom
classloader and only rely on the
ContinuationsAgent .
author: Geert Bevin (gbevin[remove] at uwyn dot com) version: $Revision: 3862 $ since: 1.6 |
BasicContinuableClassLoader | public BasicContinuableClassLoader(ContinuationConfigInstrument config)(Code) | | Creates a new classloader instance with the context classloader as
the parent classloader.
Parameters: config - the instance of the instrumentation configuration thatwill be used for the transformation since: 1.6 |
BasicContinuableClassLoader | public BasicContinuableClassLoader(ClassLoader parent, ContinuationConfigInstrument config)(Code) | | Creates a new classloader instance.
Parameters: parent - the parent classloader Parameters: config - the instance of the instrumentation configuration thatwill be used for the transformation since: 1.6 |
__tc_getClassLoaderName | public String __tc_getClassLoaderName()(Code) | | |
Methods inherited from java.lang.ClassLoader | public synchronized void clearAssertionStatus()(Code)(Java Doc) final protected Class> defineClass(byte[] b, int off, int len) throws ClassFormatError(Code)(Java Doc) final protected Class> defineClass(String name, byte[] b, int off, int len) throws ClassFormatError(Code)(Java Doc) final protected Class> defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain) throws ClassFormatError(Code)(Java Doc) final protected Class> defineClass(String name, java.nio.ByteBuffer b, ProtectionDomain protectionDomain) throws ClassFormatError(Code)(Java Doc) protected Package definePackage(String name, String specTitle, String specVersion, String specVendor, String implTitle, String implVersion, String implVendor, URL sealBase) throws IllegalArgumentException(Code)(Java Doc) protected Class> findClass(String name) throws ClassNotFoundException(Code)(Java Doc) protected String findLibrary(String libname)(Code)(Java Doc) final protected Class> findLoadedClass(String name)(Code)(Java Doc) protected URL findResource(String name)(Code)(Java Doc) protected Enumeration<URL> findResources(String name) throws IOException(Code)(Java Doc) final protected Class> findSystemClass(String name) throws ClassNotFoundException(Code)(Java Doc) protected Package getPackage(String name)(Code)(Java Doc) protected Package[] getPackages()(Code)(Java Doc) final public ClassLoader getParent()(Code)(Java Doc) public URL getResource(String name)(Code)(Java Doc) public InputStream getResourceAsStream(String name)(Code)(Java Doc) public Enumeration<URL> getResources(String name) throws IOException(Code)(Java Doc) public static ClassLoader getSystemClassLoader()(Code)(Java Doc) public static URL getSystemResource(String name)(Code)(Java Doc) public static InputStream getSystemResourceAsStream(String name)(Code)(Java Doc) public static Enumeration<URL> getSystemResources(String name) throws IOException(Code)(Java Doc) public Class> loadClass(String name) throws ClassNotFoundException(Code)(Java Doc) protected synchronized Class> loadClass(String name, boolean resolve) throws ClassNotFoundException(Code)(Java Doc) final protected void resolveClass(Class> c)(Code)(Java Doc) public synchronized void setClassAssertionStatus(String className, boolean enabled)(Code)(Java Doc) public synchronized void setDefaultAssertionStatus(boolean enabled)(Code)(Java Doc) public synchronized void setPackageAssertionStatus(String packageName, boolean enabled)(Code)(Java Doc) final protected void setSigners(Class> c, Object[] signers)(Code)(Java Doc)
|
|
|