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

us.codecraft.webmagic.pipeline.CollectorPageModelPipeline Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package us.codecraft.webmagic.pipeline;

import us.codecraft.webmagic.Task;

import java.util.ArrayList;
import java.util.List;

/**
 * @author [email protected]
 */
public class CollectorPageModelPipeline implements PageModelPipeline {

    private List collected = new ArrayList();

    @Override
    public synchronized void process(T t, Task task) {
        collected.add(t);
    }

    public List getCollected() {
        return collected;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy