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

GeofenceRegistry.java « geofence « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e0f1f3f37638dd02dfc9fa17cc0bed4c188695c (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.geofence;

import android.support.annotation.NonNull;

import com.mapswithme.maps.location.LocationPermissionNotGrantedException;

public interface GeofenceRegistry
{
  void registerGeofences(@NonNull GeofenceLocation location) throws LocationPermissionNotGrantedException;
  void unregisterGeofences() throws LocationPermissionNotGrantedException;
}