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

com.epam.eco.kafkamanager.ui.config.TopicOffsetCacheCleanerRunner Maven / Gradle / Ivy

package com.epam.eco.kafkamanager.ui.config;

import com.epam.eco.commons.kafka.helpers.CachedTopicRecordFetcher;

/**
 * @author Mikhail_Vershkov
 */

public class TopicOffsetCacheCleanerRunner {

    private final long intervalMin;
    public TopicOffsetCacheCleanerRunner(long intervalMin) {
        this.intervalMin = intervalMin;
    }
    void init() {
        CachedTopicRecordFetcher.TopicCacheCleaner.with(intervalMin);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy