AppsFlyerRequestListener

概要

Intercept requests to the AppsFlyer servers by implementing the AppsFlyerRequestListener interface and registering it with start.

インターフェイス宣言

public interface AppsFlyerRequestListener {
    void onSuccess();
    void onError(int code, @NonNull String error);
}

インターフェイスのインポート

import com.appsflyer.attribution.AppsFlyerRequestListener;
import com.appsflyer.attribution.AppsFlyerRequestListener

メソッド

onSuccess

メソッドのシグネチャ

void onSuccess();

コールバックパラメーター
このコールバックはパラメータを返しません。

詳細
レスポンスが成功したときに起動します。

onError

メソッドのシグネチャ

void onError(int code, @NonNull String error);

詳細
レスポンスが成功したときに起動します。

コールバックパラメーター

タイプ名前詳細
intcodeエラーコード。
Stringerrorエラーメッセージ。