Package net.sf.jmp3renamer.plugins.CoverGrabber

Examples of net.sf.jmp3renamer.plugins.CoverGrabber.CoverProvider


            ExecutorService searchPool = Executors.newFixedThreadPool(providers.length);

            // send the request with each provider
            List<Future<List<Cover>>> results = new ArrayList<Future<List<Cover>>>(providers.length);
            for (Object provider : providers) {
                CoverProvider prov = (CoverProvider) provider;
                Future<List<Cover>> futureResult = searchPool.submit(new CoverSearchTask(artist, album, prov));
                results.add(futureResult);
            }

            // no we check, if the user didn't stop the search
View Full Code Here

TOP

Related Classes of net.sf.jmp3renamer.plugins.CoverGrabber.CoverProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.