// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry.clientreport;

import io.sentry.DataCategory;
import io.sentry.SentryEnvelopeItem;
import org.jetbrains.annotations.Nullable;
import io.sentry.SentryEnvelope;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Internal
public final class NoOpClientReportRecorder implements IClientReportRecorder
{
    @Override
    public void recordLostEnvelope(@NotNull final DiscardReason reason, @Nullable final SentryEnvelope envelope) {
    }
    
    @Override
    public void recordLostEnvelopeItem(@NotNull final DiscardReason reason, @Nullable final SentryEnvelopeItem envelopeItem) {
    }
    
    @Override
    public void recordLostEvent(@NotNull final DiscardReason reason, @NotNull final DataCategory category) {
    }
    
    @Override
    public void recordLostEvent(@NotNull final DiscardReason reason, @NotNull final DataCategory category, final long count) {
    }
    
    @NotNull
    @Override
    public SentryEnvelope attachReportToEnvelope(@NotNull final SentryEnvelope envelope) {
        return envelope;
    }
}
