Deployment class loader now inhertits from system class loader

This commit is contained in:
Jonas Bonér 2010-02-16 09:39:56 +01:00
parent dd939a00e7
commit 16d887fc0c
2 changed files with 8 additions and 8 deletions

View file

@ -33,6 +33,11 @@ import org.jboss.netty.handler.codec.compression.{ZlibEncoder, ZlibDecoder}
* <pre>
* RemoteNode.start(hostname, port)
* </pre>
*
* You can specify the class loader to use to load the remote actors.
* <pre>
* RemoteNode.start(hostname, port, classLoader)
* </pre>
*
* If you need to create more than one, then you can use the RemoteServer:
*