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

run.halo.app.extension.index.IndexDescriptor Maven / Gradle / Ivy

The newest version!
package run.halo.app.extension.index;

import lombok.Data;
import lombok.ToString;

@Data
@ToString(callSuper = true)
public class IndexDescriptor {

    private final IndexSpec spec;

    /**
     * Record whether the index is ready, managed by {@code IndexBuilder}.
     */
    private boolean ready;

    public IndexDescriptor(IndexSpec spec) {
        this.spec = spec;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy