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

org.wildfly.clustering.server.infinispan.scheduler.AbstractCacheEntryScheduler Maven / Gradle / Ivy

/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.clustering.server.infinispan.scheduler;

import org.wildfly.clustering.cache.Key;
import org.wildfly.clustering.server.scheduler.Scheduler;
import org.wildfly.common.function.Functions;

/**
 * An abstract cache entry scheduler.
 * @param  the scheduled entry identifier type
 * @param  the cache entry key type
 * @param  the cache entry value type
 * @param  the scheduled entry metadata type
 * @author Paul Ferraro
 */
public abstract class AbstractCacheEntryScheduler, V, M> extends Scheduler.ReferenceScheduler implements CacheEntryScheduler {

	protected AbstractCacheEntryScheduler(Scheduler scheduler) {
		super(Functions.constantSupplier(scheduler));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy