* Creates a remote cache manager aware of the Hot Rod server listening at host:port.
*
* @param start weather or not to start the RemoteCacheManager.
*/
public RemoteCacheManager(String host, int port, boolean start, ClassLoader classLoader) {
config = new ConfigurationProperties(host + ":" + port);
this.classLoader = classLoader;
if (start) start();
}