- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
641 B
Java
24 lines
641 B
Java
package com.google.firebase.sessions.settings;
|
|
|
|
import kotlin.Unit;
|
|
import kotlin.coroutines.Continuation;
|
|
import kotlin.time.Duration;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface SettingsProvider {
|
|
Double getSamplingRate();
|
|
|
|
Boolean getSessionEnabled();
|
|
|
|
/* renamed from: getSessionRestartTimeout-FghU774 */
|
|
Duration mo852getSessionRestartTimeoutFghU774();
|
|
|
|
Object updateSettings(Continuation continuation);
|
|
|
|
public static final class DefaultImpls {
|
|
public static Object updateSettings(SettingsProvider settingsProvider, Continuation continuation) {
|
|
return Unit.INSTANCE;
|
|
}
|
|
}
|
|
}
|