Package com.castlabs.sdk.vimond
Interface VimondCallback
-
- All Known Implementing Classes:
VimondComponent
public interface VimondCallback
Callback for Vimond Player Session API responses.- Since:
- 4.2.34
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onVimondResponse(int httpStatusCode, Map<String,List<String>> headers, String responseBody)
Will be called on each an every Vimond backend response, regardless of the status code.
-
-
-
Method Detail
-
onVimondResponse
void onVimondResponse(int httpStatusCode, @Nullable Map<String,List<String>> headers, @Nullable String responseBody)
Will be called on each an every Vimond backend response, regardless of the status code.- Parameters:
httpStatusCode
- the HTTP status code Vimond backend responded with, or -1 if couldn't get a response.headers
- response headers, if applicable.responseBody
- response body, if applicable.
-
-