Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NativeBookmarkSearchListener.java « search « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91fe8beb2236cea519a46fd817d2c472f9bd1cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mapswithme.maps.search;

import android.support.annotation.Nullable;

/**
 * Native search will return results via this interface.
 */
@SuppressWarnings("unused")
public interface NativeBookmarkSearchListener
{
  /**
   * @param bookmarkIds Founded bookmark ids.
   * @param timestamp Timestamp of search request.
   */
  void onBookmarkSearchResultsUpdate(@Nullable long[] bookmarkIds, long timestamp);

  /**
   * @param bookmarkIds Founded bookmark ids.
   * @param timestamp Timestamp of search request.
   */
  void onBookmarkSearchResultsEnd(@Nullable long[] bookmarkIds, long timestamp);
}