mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
23 lines
772 B
Java
23 lines
772 B
Java
|
package io.sentry;
|
||
|
|
||
|
import io.sentry.util.Objects;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class SamplingContext {
|
||
|
private final CustomSamplingContext customSamplingContext;
|
||
|
private final TransactionContext transactionContext;
|
||
|
|
||
|
public CustomSamplingContext getCustomSamplingContext() {
|
||
|
return this.customSamplingContext;
|
||
|
}
|
||
|
|
||
|
public TransactionContext getTransactionContext() {
|
||
|
return this.transactionContext;
|
||
|
}
|
||
|
|
||
|
public SamplingContext(TransactionContext transactionContext, CustomSamplingContext customSamplingContext) {
|
||
|
this.transactionContext = (TransactionContext) Objects.requireNonNull(transactionContext, "transactionContexts is required");
|
||
|
this.customSamplingContext = customSamplingContext;
|
||
|
}
|
||
|
}
|