context.removeService(channelServiceName);
}
}
ServiceController<?> installKeyAffinityServiceFactoryService(ServiceTarget target, String containerName, ServiceVerificationHandler verificationHandler) {
return AsynchronousService.addService(target, KeyAffinityServiceFactoryService.getServiceName(containerName), new KeyAffinityServiceFactoryService(10), false, true)
.setInitialMode(ServiceController.Mode.ON_DEMAND)
.install()
;
}