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

com.aliyun.openservices.loghub.client.InnerFetcherProcessorFactory Maven / Gradle / Ivy

There is a newer version: 0.6.7
Show newest version
package com.aliyun.openservices.loghub.client;

import com.aliyun.openservices.loghub.client.interfaces.ILogHubProcessor;
import com.aliyun.openservices.loghub.client.interfaces.ILogHubProcessorFactory;

public class InnerFetcherProcessorFactory implements ILogHubProcessorFactory {

    private final ClientFetcher mFetcher;

    public InnerFetcherProcessorFactory(ClientFetcher fetcher) {
        mFetcher = fetcher;
    }

    public ILogHubProcessor generatorProcessor() {
        return new InnerFetcherProcessor(mFetcher);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy