-
@RestrictTo(value = {RestrictTo.Scope.LIBRARY_GROUP}) public interface CloudXAdapterParams
Base interface for all adapter params. Every adapter operation receives context, a logger, and SDK version info.
-
-
Method Summary
Modifier and Type Method Description abstract ContextgetContext()Application context — never pass an Activity context. abstract CloudXLoggergetLogger()abstract StringgetSdkVersion()abstract IntegergetSdkVersionCode()SDK version as a comparable int — e.g. -
-
Method Detail
-
getContext
abstract Context getContext()
Application context — never pass an Activity context.
-
getLogger
abstract CloudXLogger getLogger()
-
getSdkVersion
abstract String getSdkVersion()
-
getSdkVersionCode
abstract Integer getSdkVersionCode()
SDK version as a comparable int — e.g. 4_001_000 for 4.1.0 (major * 1_000_000 + minor * 1_000 + patch).
-
-
-
-