com.treasuredata.android.cdp.CDPClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of td-android-sdk Show documentation
Show all versions of td-android-sdk Show documentation
Android SDK for Treasure Data Cloud
package com.treasuredata.android.cdp;
import java.util.List;
import java.util.Map;
/**
* A single-purpose client for now,
* Use to lookup for CDP's Profiles
*/
public interface CDPClient {
/**
* @param profilesTokens list of Profile API Token that are defined on TreasureData
* @param keys lookup keyColumn values
* @param callback to receive the looked-up result
*/
void fetchUserSegments(final List profilesTokens,
final Map keys,
final FetchUserSegmentsCallback callback);
}