Package org.prebid.mobile.rendering.sdk
Interface Manager
-
- All Known Subinterfaces:
LocationInfoManager
- All Known Implementing Classes:
BaseManager,DeviceInfoImpl,LastKnownLocationInfoManager,NetworkConnectionInfoManager,UserConsentManager
public interface ManagerBase manager. Each manager extends base manager logic to provide additional functionality.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()Dispose manager and release all necessary resources.android.content.ContextgetContext()Get the context for which manager was initialized.voidinit(android.content.Context context)Initialize manager.booleanisInit()Check initialization of manager.
-
-
-
Method Detail
-
isInit
boolean isInit()
Check initialization of manager.- Returns:
- true, if manager was initialized
-
init
void init(android.content.Context context)
Initialize manager.- Parameters:
context- the context for which manager will be initialized.
-
getContext
android.content.Context getContext()
Get the context for which manager was initialized.- Returns:
- the context
-
dispose
void dispose()
Dispose manager and release all necessary resources.
-
-