MCPcopy Create free account
hub / github.com/FongMi/TV / Callback

Class Callback

app/src/main/java/com/fongmi/android/tv/impl/Callback.java:10–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import okhttp3.Response;
9
10public class Callback implements okhttp3.Callback {
11
12 public void success() {
13 }
14
15 public void success(String result) {
16 }
17
18 public void error() {
19 }
20
21 public void start() {
22 }
23
24 public void error(String msg) {
25 }
26
27 @Override
28 public void onFailure(@NonNull Call call, @NonNull IOException e) {
29 }
30
31 @Override
32 public void onResponse(@NonNull Call call, @NonNull Response response) throws IOException {
33 }
34}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected