Package io.searchbox.core

Examples of io.searchbox.core.Delete


    public void setUseRefresh(boolean useRefresh) {
        this.useRefresh = useRefresh;
    }

    public void removeFromIndex(SearchEntry entry) {
        Delete delete = new Delete.Builder()
                .id(entry.getId())
                .index(index)
                // TODO this should come from the 'entry'
                .type("site")
                .build();
View Full Code Here

TOP

Related Classes of io.searchbox.core.Delete

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.