mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
16 lines
714 B
Java
16 lines
714 B
Java
package io.sentry;
|
|
|
|
import io.sentry.transport.AsyncHttpTransport;
|
|
import io.sentry.transport.ITransport;
|
|
import io.sentry.transport.RateLimiter;
|
|
import io.sentry.util.Objects;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class AsyncHttpTransportFactory implements ITransportFactory {
|
|
@Override // io.sentry.ITransportFactory
|
|
public ITransport create(SentryOptions sentryOptions, RequestDetails requestDetails) {
|
|
Objects.requireNonNull(sentryOptions, "options is required");
|
|
Objects.requireNonNull(requestDetails, "requestDetails is required");
|
|
return new AsyncHttpTransport(sentryOptions, new RateLimiter(sentryOptions), sentryOptions.getTransportGate(), requestDetails);
|
|
}
|
|
}
|