Interface ComponentDelegate

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit initialize(CoroutineScope coroutineScope) Use this method if your delegate needs to use a CoroutineScope.
      abstract Unit onCleared()
      abstract ComponentParams getComponentParams()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.