-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Taxonomy query support - Early Access Feature Support
- Loading branch information
1 parent
f521de8
commit 2343fb9
Showing
4 changed files
with
91 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,9 @@ | ||
package com.contentstack.sdk; | ||
|
||
import okhttp3.Request; | ||
import okhttp3.ResponseBody; | ||
|
||
public interface TaxonomyCallback { | ||
|
||
/** | ||
* Called when the HTTP response was successfully returned by the remote server. The callback may | ||
* proceed to read the response body. The response is still live until | ||
* its response body is {@linkplain ResponseBody closed}. The recipient of the callback may | ||
* consume the response body on another thread. | ||
* | ||
* <p>Note that transport-layer success (receiving a HTTP response code, headers and body) does | ||
* not necessarily indicate application-layer success: {@code response} may still indicate an | ||
* unhappy HTTP response code like 404 or 500. | ||
*/ | ||
void onResponse(ResponseBody response); | ||
|
||
/** | ||
* Called when the request could not be executed due to cancellation, a connectivity problem or | ||
* timeout. Because networks can fail during an exchange, it is possible that the remote server | ||
* accepted the request before the failure. | ||
*/ | ||
void onFailure(Request request, ResponseBody errorMessage); | ||
|
||
|
||
} |
Oops, something went wrong.