Package io.sentry
Class SentryClient
- java.lang.Object
-
- io.sentry.SentryClient
-
- All Implemented Interfaces:
ISentryClient
public final class SentryClient extends java.lang.Object implements ISentryClient
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull SentryIdcaptureEnvelope(@NotNull SentryEnvelope envelope, @Nullable java.lang.Object hint)Captures an envelope.@NotNull SentryIdcaptureEvent(@NotNull SentryEvent event, @Nullable Scope scope, @Nullable java.lang.Object hint)Capture the eventvoidcaptureSession(@NotNull Session session, @Nullable java.lang.Object hint)Captures a session.@NotNull SentryIdcaptureTransaction(@NotNull SentryTransaction transaction, @Nullable TraceState traceState, @Nullable Scope scope, @Nullable java.lang.Object hint)Captures a transaction.voidcaptureUserFeedback(@NotNull UserFeedback userFeedback)Captures a manually created user feedback and sends it to Sentry.voidclose()Flushes out the queue for up to timeout seconds and disable the client.voidflush(long timeoutMillis)Flushes events queued up, but keeps the client enabled.booleanisEnabled()Whether the client is enabled or not-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.sentry.ISentryClient
captureEnvelope, captureEvent, captureEvent, captureEvent, captureException, captureException, captureException, captureException, captureMessage, captureMessage, captureSession, captureTransaction, captureTransaction, captureTransaction
-
-
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
Description copied from interface:ISentryClientWhether the client is enabled or not- Specified by:
isEnabledin interfaceISentryClient- Returns:
- true if its enabled or false otherwise.
-
captureEvent
@NotNull public @NotNull SentryId captureEvent(@NotNull @NotNull SentryEvent event, @Nullable @Nullable Scope scope, @Nullable @Nullable java.lang.Object hint)
Description copied from interface:ISentryClientCapture the event- Specified by:
captureEventin interfaceISentryClient- Parameters:
event- the eventscope- An optional scope to be applied to the event.hint- SDK specific but provides high level information about the origin of the event.- Returns:
- The Id (SentryId object) of the event.
-
captureUserFeedback
public void captureUserFeedback(@NotNull @NotNull UserFeedback userFeedback)Description copied from interface:ISentryClientCaptures a manually created user feedback and sends it to Sentry.- Specified by:
captureUserFeedbackin interfaceISentryClient- Parameters:
userFeedback- The user feedback to send to Sentry.
-
captureSession
@Internal public void captureSession(@NotNull @NotNull Session session, @Nullable @Nullable java.lang.Object hint)Description copied from interface:ISentryClientCaptures a session. This method transform a session to an envelope and forwards to captureEnvelope- Specified by:
captureSessionin interfaceISentryClient- Parameters:
session- the Sessionhint- SDK specific but provides high level information about the origin of the event
-
captureEnvelope
@Internal @NotNull public @NotNull SentryId captureEnvelope(@NotNull @NotNull SentryEnvelope envelope, @Nullable @Nullable java.lang.Object hint)
Description copied from interface:ISentryClientCaptures an envelope.- Specified by:
captureEnvelopein interfaceISentryClient- Parameters:
envelope- the SentryEnvelope to send.hint- SDK specific but provides high level information about the origin of the event- Returns:
- The Id (SentryId object) of the event
-
captureTransaction
@NotNull public @NotNull SentryId captureTransaction(@NotNull @NotNull SentryTransaction transaction, @Nullable @Nullable TraceState traceState, @Nullable @Nullable Scope scope, @Nullable @Nullable java.lang.Object hint)
Description copied from interface:ISentryClientCaptures a transaction.- Specified by:
captureTransactionin interfaceISentryClient- Parameters:
transaction- theITransactionto sendtraceState- the trace statescope- An optional scope to be applied to the event.hint- SDK specific but provides high level information about the origin of the event- Returns:
- The Id (SentryId object) of the event
-
close
public void close()
Description copied from interface:ISentryClientFlushes out the queue for up to timeout seconds and disable the client.- Specified by:
closein interfaceISentryClient
-
flush
public void flush(long timeoutMillis)
Description copied from interface:ISentryClientFlushes events queued up, but keeps the client enabled. Not implemented yet.- Specified by:
flushin interfaceISentryClient- Parameters:
timeoutMillis- time in milliseconds
-
-