Package net.fp.rp.search.plugins.events

Examples of net.fp.rp.search.plugins.events.IInterestedInFeedback


                    //start a new process in background to recalculate the scores
                    IInterestedInFeedback[] feedbackPlugins = PluginManager.getInterestedInFeedback();

                    for (int i = 0; i < feedbackPlugins.length; i++) {
                        final IInterestedInFeedback feedbackPlugin = feedbackPlugins[i];
                        Thread t = new Thread(new Runnable() {
                                    public void run() {
                                        try {
                                            feedbackPlugin.acceptFeedback(advice);
                                        } catch (RpException e) {
                                            log.warn("Exception in feedback from search",e);
                                        }
                                    }
                                });
View Full Code Here

TOP

Related Classes of net.fp.rp.search.plugins.events.IInterestedInFeedback

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.