Interface ComponentDelegate
-
- All Implemented Interfaces:
@RestrictTo(value = {RestrictTo.Scope.LIBRARY_GROUP}) public interface ComponentDelegate
-
-
Method Summary
Modifier and Type Method Description abstract Unitinitialize(CoroutineScope coroutineScope)Use this method if your delegate needs to use a CoroutineScope. abstract UnitonCleared()abstract ComponentParamsgetComponentParams()-
-
Method Detail
-
initialize
abstract Unit initialize(CoroutineScope coroutineScope)
Use this method if your delegate needs to use a CoroutineScope.
Do not keep a local references of this scope if you don't need to.
If you have to keep any references to CoroutineScope, use onCleared to clear them.
-
getComponentParams
abstract ComponentParams getComponentParams()
-
-
-
-