namespace VideoGameQuotes.Api.Search {
///
/// Exposes an interface to build and update a search index
///
public interface ISearchIndexBuilder {
///
/// (Re)builds the search index
///
void BuildIndex();
///
/// Updates the index for the specified
///
/// The object that needs its index updated
void UpdateIndex(T indexableObject);
}
}