Package org.modeshape.jcr.spi.index

Examples of org.modeshape.jcr.spi.index.IndexFeedback$IndexingCallback


         * @param providerName the name of the index provider; may not be null
         * @return the custom IndexFeedback instance; never null
         */
        protected IndexFeedback forProvider( final String providerName ) {
            assert providerName != null;
            return new IndexFeedback() {

                @Override
                public void scan( String workspaceName,
                                  IndexingCallback callback ) {
                    add(providerName, workspaceName, Path.ROOT_PATH, callback);
View Full Code Here

TOP

Related Classes of org.modeshape.jcr.spi.index.IndexFeedback$IndexingCallback

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.