* @param zkPath
* @return
*/
public SliderRegistryService startRegistrationService(
String zkConnection, String zkPath) {
CuratorHelper curatorHelper =
new CuratorHelper(getConfig(), zkConnection);
//registry will start curator as well as the binder, in the correct order
SliderRegistryService registryBinderService =
curatorHelper.createRegistryBinderService(zkPath);
deployChildService(registryBinderService);
return registryBinderService;
}