when using `MutableSharedFlow` is there any conseq...
# coroutines
w
when using
MutableSharedFlow
is there any consequence for choosing a buffer of
Int.MAX_VALUE
? i.e. does it allocate an array of that size or something? often i would like some buffer to exist but don't have a definitive size in mind so i default to max value rather than something arbitrary between
0 .. MAX_VALUE
g
I think the buffer grows. Code has a method called
growBuffer
and there's a
bufferSize
property.