if (allocator == null) {
// First time allocation for app name
allocator = new SmallIntegerAllocator(1);
instanceAllocators.put(appName, allocator);
}
return allocator.allocate();
}
/**
* Return the given instance number to the app name's pool of instances.
*