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

io.unlogged.logging.perthread.UploadFileQueueImpl Maven / Gradle / Ivy

There is a newer version: 0.7.6
Show newest version
package io.unlogged.logging.perthread;

import com.insidious.common.UploadFile;

import java.io.IOException;

public class UploadFileQueueImpl implements UploadFileQueue {

    private final RawFileCollector rawFileCollectorCron;

    public UploadFileQueueImpl(RawFileCollector rawFileCollectorCron) {
        this.rawFileCollectorCron = rawFileCollectorCron;
    }

    @Override
    public void add(UploadFile uploadFile) throws IOException {
//        rawFileCollectorCron.pushFileToIndex(uploadFile);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy