Questions tagged [kotlin-sealed]

17 questions
0
votes
1 answer

Proper way of using sealed interface in kotlin

I am totally new in sealed Interface in kotlin. I am trying to state management through sealed in android kotlin. My main goal is when I used the object of sealed i don't want to inherit all child. I am not sure correctly is that sealed interface is…
Kotlin Learner
  • 3,995
  • 6
  • 47
  • 127
0
votes
1 answer

How to get a message sent from View Model using a sealed class?

I have an app that uses Kotlin with an MVVM approach. My goal here is to send the state (SUCCESS, FAIL, ERROR, EXCEPTION.VM_INSERT...) from View Model to activity. In my activity, I observe the state and based on that I will inform the user about…
1
2