- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
640 B
Java
20 lines
640 B
Java
package kotlinx.coroutines.flow;
|
|
|
|
import kotlin.coroutines.CoroutineContext;
|
|
import kotlinx.coroutines.channels.BufferOverflow;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class SharingConfig {
|
|
public final CoroutineContext context;
|
|
public final int extraBufferCapacity;
|
|
public final BufferOverflow onBufferOverflow;
|
|
public final Flow upstream;
|
|
|
|
public SharingConfig(Flow flow, int i, BufferOverflow bufferOverflow, CoroutineContext coroutineContext) {
|
|
this.upstream = flow;
|
|
this.extraBufferCapacity = i;
|
|
this.onBufferOverflow = bufferOverflow;
|
|
this.context = coroutineContext;
|
|
}
|
|
}
|