All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.live.plugins.messenger.search.SearchService Maven / Gradle / Ivy

The newest version!
package net.intelie.live.plugins.messenger.search;

import org.jetbrains.annotations.NotNull;

import java.util.Collection;
import java.util.Map;
import java.util.Set;

public interface SearchService {

    AutoCloseable registerSearchableEventHandler(@NotNull SearchableEventHandler searchableEventHandler) throws Exception;

    void restartIndexing() throws Exception;

    int searchCount(String query) throws Exception;

    Set searchableFields();

    Collection> search(String query, int limit, Long lowerCursor, Long upperCursor) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy