summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidModuleBase/src/main/java/com/mapbox/mapboxsdk/http/HttpRequestResponder.java
blob: e4659e095590712d2d92319a15265c6a6972c21b (plain)
1
2
3
4
5
6
7
package com.mapbox.mapboxsdk.http;

public interface HttpRequestResponder {
  void onResponse(int responseCode, String eTag, String lastModified, String cacheControl, String expires,
                  String retryAfter, String xRateLimitReset, byte[] body);
  void handleFailure(int type, String errorMessage);
}