24252627282930
private DownloadThreadPool seeniveThreadPool; public SeeniveRipper(URL url) throws IOException { super(url); seeniveThreadPool = new DownloadThreadPool(); }
22232425262728
private DownloadThreadPool motherlessThreadPool; public MotherlessRipper(URL url) throws IOException { super(url); motherlessThreadPool = new DownloadThreadPool(); }
36373839404142
return flickrThreadPool; } public FlickrRipper(URL url) throws IOException { super(url); flickrThreadPool = new DownloadThreadPool(); }
27282930313233
private DownloadThreadPool nfsfwThreadPool; public NfsfwRipper(URL url) throws IOException { super(url); nfsfwThreadPool = new DownloadThreadPool("NFSFW"); }