babel
05/27/2021, 7:39 PMJad Doueik
06/07/2021, 5:22 AMzalewski.se
07/01/2021, 5:35 PMWilliam Persall
09/08/2021, 7:40 PMPatrick Jackson
12/14/2021, 6:34 PMRobert Jaros
12/14/2021, 6:41 PMRobert Jaros
12/14/2021, 6:42 PMBig Chungus
12/20/2021, 6:38 PMAlexander Black
01/08/2022, 5:35 AMAlexander Black
01/08/2022, 5:38 AMoverride fun invoke(store: Store<AppState>): (next: Dispatcher) -> (action: Any) -> Any {
return { next ->
{ action ->
if (action is Request) coroutineScope.launch {
action.execute(store.getState, store.dispatch, api, db)
}
next(action)
}
}
}
but the problem is that the state can get very out of wack in this situation if the coroutineScope is not on the same thread as the rest of the store. which in my case does not work out well.Alexander Black
01/08/2022, 5:39 AMDan Nesfeder
02/01/2022, 9:45 PMJoakim Forslund
03/03/2022, 11:46 AMfun subscribe(onChanged: (AppState) -> Unit):StoreSubscription {
return store.subscribe { onChanged(store.state) }
}
What would be the easieast way to make this more generic to listen to a specific state rather than the appstate? Obviously making each state inherit from a base class or interface is one way, but is there a more functional way?Kata
04/22/2022, 1:19 PMFailed to allocate a 96 byte allocation with 3865072 free bytes and 3774KB until OOM, target footprint 536870912, growth limit 536870912; giving up on allocation because <1% of heap free after GC.
Any idea what could be causing the issue? My guess is that maybe my reducer is called too often and that is causing the issue. I am using the copy() function of the data class.Philipp Nowak
05/30/2022, 2:11 PMPatrick Jackson
08/27/2022, 12:53 AMPrzemysław Niemiec
10/21/2022, 7:53 AMVille Peurala
11/01/2022, 12:04 PMhumblehacker
11/08/2022, 4:04 PMBig Chungus
01/13/2023, 4:24 PMBig Chungus
01/16/2023, 10:45 PMBig Chungus
01/29/2023, 10:52 PMwasm32
target
• New Typed
entities and converters between them
Enjoy!Big Chungus
01/29/2023, 11:27 PMpresenter
and new compose
modules will come later this month.Robert Jaros
01/31/2023, 10:00 AMActionTypes
interface has been changed from public to internal and KVision redux module no longer compiles. Not mentioned in the changelog.Big Chungus
02/03/2023, 2:09 AMJoakim Forslund
03/16/2023, 1:14 PMAndromadus Naruto
03/16/2023, 3:05 PMianrumac
04/06/2023, 9:42 AMJosé Carlos
10/27/2023, 12:58 PMJosé Carlos
10/27/2023, 12:58 PM