void CBRLocationServiceCache::replicaBoundsUpdated(const UUID& uuid, const BoundingSphere3f& newval) {
    if (mWithReplicas)
        boundsUpdated(uuid, false, newval);
}
void CBRLocationServiceCache::replicaBoundsUpdated(const UUID& uuid, const AggregateBoundingInfo& newval) {
    if (mWithReplicas)
        boundsUpdated(uuid, false, newval);
}
void CBRLocationServiceCache::localBoundsUpdated(const UUID& uuid, bool agg, const BoundingSphere3f& newval) {
    boundsUpdated(uuid, agg, newval);
}
void CBRLocationServiceCache::localBoundsUpdated(const UUID& uuid, bool agg, const AggregateBoundingInfo& newval) {
    boundsUpdated(uuid, agg, newval);
}