You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Blargy <zm...@hotmail.com> on 2010/06/16 06:47:43 UTC

SolrCoreAware

Can someone please explain what the inform method should accomplish? Thanks
-- 
View this message in context: http://lucene.472066.n3.nabble.com/SolrCoreAware-tp899064p899064.html
Sent from the Solr - User mailing list archive at Nabble.com.

Re: SolrCoreAware

Posted by Chris Hostetter <ho...@fucit.org>.
: Can someone please explain what the inform method should accomplish? Thanks

whatever you want it to acomplish ... it's just a hook that (some types 
of) plugins can use to finish their initialize themselves after init() has 
been called on the SolrCore and all of the other plugins.

(it's a two stage initialization process: for example: a RequestHandler 
can't get a list of all other RequestHandlers in it's init() method, 
because they might not have been constructed yet -- but when it's inform() 
method is called, they have all been construced and init()ed.

-Hoss