Guilherme Delgado
08/11/2021, 9:27 PMMikolaj Leszczynski
08/12/2021, 5:38 AMContainerHost
. Could you please explain how you think this library would improve things beyond making state transitions more strict (possibly something you can achieve manually as well)?
Overall the topic of state machines is something we know can work with Orbit but we haven’t explored it in a lot of detail yet - we want to do a deep dive into it at some point. Maybe there’s a simple API we could add to improve working with state machines - e.g. adding declarative transitionsGuilherme Delgado
08/12/2021, 8:33 AMMikolaj Leszczynski
08/12/2021, 8:36 AMGuilherme Delgado
08/12/2021, 8:37 AMOleksii Malovanyi
08/12/2021, 9:01 AMsealed class A {
sealed class B : A() {
class C : B()
}
}
val c = A.B.C()
IMHO it looks quite bad 😆Guilherme Delgado
08/12/2021, 9:03 AMOleksii Malovanyi
08/12/2021, 9:05 AMMikolaj Leszczynski
08/12/2021, 10:32 AM