run.halo.app.search.SearchService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
API of halo project, connecting by other projects.
The newest version!
package run.halo.app.search;
import reactor.core.publisher.Mono;
/**
* Search service is used to search content.
*
* @author johnniang
* @since 2.17.0
*/
public interface SearchService {
/**
* Perform search.
*
* @param option search option must not be null
* @return search result
*/
Mono search(SearchOption option);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy