All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.runtime.opto.ConstantInvalidator Maven / Gradle / Ivy

package org.jruby.runtime.opto;

import org.jruby.management.Caches;

import java.util.List;

/**
 * A validator specific to how we manage Ruby constants.
 */
public class ConstantInvalidator extends SwitchPointInvalidator {
    private final Caches caches;

    public ConstantInvalidator(Caches caches) {
        this.caches = caches;
    }

    @Override
    public void invalidate() {
        // order is important; invalidate before increment
        super.invalidate();
        caches.incrementConstantInvalidations();
    }

    @Override
    public void invalidateAll(List invalidators) {
        // order is important; invalidate before increment
        super.invalidateAll(invalidators);
        caches.incrementConstantInvalidations();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy