ursusursus

Results 32 comments of ursusursus

@JakeWharton ksp is stable now

Although I'd naively expect this to already be that general rule https://github.com/square/retrofit/blob/master/retrofit/src/main/resources/META-INF/proguard/retrofit2.pro#L9

bump, using strings to pass data to okhttp is bad

The manual workaround is to have ``` protocol SomePluginsProvider { func get() -> Set } and then struct App1SomePluginsProvider : SomePluginsProvider { func get() -> Set { [Feature1Plugin(), Feature2Plugin() ]...

It's mostly used for dependency inversion when modularizing, and you wish for Assembly to be packaged with the module. For example ``` // Analytics module class Analytics { private let...

Hm, but is that not leaky? The task will continue after callsite task gets canceled, no?

How does this look? ``` extension AsyncThrowingStream { public struct Emitter { let continuation: Continuation public func emit(_ value: Element) { continuation.yield(value) } } public init(body: @escaping (Emitter) async throws...

@jberkel I basically want observable queries, that is to get the current result of the query as first emit, and then subsequent emits as the underlying data changes. In other...