-
Apigee NG requires that the cache entry has an expiry time for a cache resource.
When the shared flow does a lookup on the cache entry it exists, but when the set am header policy tries to add the be…
-
perhaps a sample code to subscribe to notifications would be handy and helpful for newbies...
i'm struggling to subscribe to onCharacteristicChanged. I have already enabled notifications on my devi…
-
Until `SharedFlow` is released, development is occurring on `internal` branch (built against internal Coroutines publications).
When merging `internal` back into `develop`, ensure the following has…
-
Consider we have:
```
fun testFlow() = runBlocking {
val numbers = MutableSharedFlow()
numbers.onEach(::println).launchIn(GlobalScope)
delay(500)
numbers.tryEmit(0)
delay(50…
j2esu updated
3 years ago
-
記事のリンクなどをペタペタ貼っていこう〜
-
Trying to understand how SubjectInteractor is expecting to work, especially with `` as a parameter. There is even an extension for this:
`operator fun Interactor.invoke() = invoke(Unit)`
Subject…
-
We need to be able to conveniently use `Flow` to represent an updateable state in applications. This change introduces `StateFlow` -- an updateable value that represents a state and _is_ a `Flow`. The…
-
Running apigeelint 0.4.0 against a shared flow gives false warnings on rule BN005.
For example, even though a policy is referenced in a step in the sharedflowbundle/sharedflow/default.xml, running…
-
I'm not sure if this is an issue, but an odd behavior thing I noticed that I can't figure out.
If you're using `asObservable()` to convert a `Flow` to an RxJava `Observable`, it typically uses the …
-
This issue supersedes #1261 and is based on the `SharedFlow` #2034 and `StateFlow` #1973 framework. See #2034 for most of the conceptual details on shared flows.
### Introduction
A `MutableShare…