[search] Documented the contract of OnResults.

This commit is contained in:
Maxim Pimenov 2019-10-23 21:00:28 +03:00 committed by Aleksey Belousov
parent a811983179
commit 764e3d21c7

View file

@ -35,6 +35,24 @@ struct SearchParams
void Clear() { m_query.clear(); }
OnStarted m_onStarted;
// This function may be called an arbitrary number of times during
// the search session. The argument to every call except the first must contain
// as its prefix the argument of the previous call, i.e. |m_onResults| is
// always called for the whole array of results found so far but new results
// are only appended to the end.
//
// The function may be called several times with the same arguments.
// The reasoning is as follows: we could either 1) rearrange results
// between calls if a better ranked result is found after the first
// emit has happened or 2) only append as we do now but never call
// the function twice with the same array of results.
// We decided against the option 1) so as not to annoy the user by
// rearranging.
// We do not guarantee the option 2) because an efficient client
// would only need to redraw the appended part and therefore would
// be fast enough if the two calls are the same. The implementation of
// the search may decide against duplicating calls but no guarantees are given.
OnResults m_onResults;
std::string m_query;