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: 09a073c252dd62fd8e1b517c21d3c9b73e2a360a (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.geofence;

import androidx.annotation.NonNull;

import com.mapswithme.maps.location.LocationPermissionNotGrantedException;

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