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

org.neo4j.kernel.impl.util.ApocGroup Maven / Gradle / Ivy

There is a newer version: 3.5.0.2
Show newest version
package org.neo4j.kernel.impl.util;

import static org.neo4j.kernel.impl.util.JobScheduler.SchedulingStrategy.POOLED;

/**
 * @author mh
 * @since 21.05.16
 */
public class ApocGroup extends JobScheduler.Group {
    public static JobScheduler.Group TTL_GROUP = new ApocGroup("TTL", POOLED);

    public ApocGroup(String name, JobScheduler.SchedulingStrategy strategy) {
        super(name, strategy);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy