congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AbstractSearchHandler
Code IndexAdd Tabnine to your IDE (free)

How to use
AbstractSearchHandler
in
co.chatsdk.core.base

Best Java code snippets using co.chatsdk.core.base.AbstractSearchHandler (Showing top 4 results out of 315)

origin: chat-sdk/chat-sdk-android

public Observable<User> usersForIndexes(String value, int limit, String... indexes) {
  ArrayList<Observable<User>> observables = new ArrayList<>();
  for (String index : indexes) {
    observables.add(usersForIndex(value, limit, index));
  }
  return Observable.merge(observables);
}
origin: chat-sdk/chat-sdk-android

public Observable<User> usersForIndexes(final String value, final String... indexes) {
  return usersForIndexes(value, ChatSDK.config().contactsToLoadPerBatch, indexes);
}
origin: chat-sdk/chat-sdk-android

public Observable<User> usersForIndex(final String value) {
  return usersForIndex(value, ChatSDK.config().contactsToLoadPerBatch);
}
origin: chat-sdk/chat-sdk-android

public Observable<User> usersForIndex(final String value, final String index) {
  return usersForIndex(value, ChatSDK.config().contactsToLoadPerBatch, index);
}
co.chatsdk.core.baseAbstractSearchHandler

Most used methods

  • usersForIndex
  • usersForIndexes

Popular in Java

  • Reactive rest calls using spring rest template
  • getExternalFilesDir (Context)
  • setScale (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Join (org.hibernate.mapping)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now