Hi, I am using a callbackFlow{} and I am not sure ...
# coroutines
h
Hi, I am using a callbackFlow{} and I am not sure if I should use `offer`(deprecated) or
trySend
(experimental API). Could someone tell me what is the best choice?
d
Use either
send
,
trySend
or
trySendBlocking
depending on the kind of callback you send from.
h
Thank you Didier, I was asking just because in my team they said that is better a deprecated function than an experimental. But I am not sure at all