Package io.sentry
Interface IScopeObserver
-
public interface IScopeObserverObserver for the sync. of Scopes across SDKs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddBreadcrumb(@NotNull Breadcrumb crumb)voidremoveExtra(@NotNull java.lang.String key)voidremoveTag(@NotNull java.lang.String key)voidsetExtra(@NotNull java.lang.String key, @NotNull java.lang.String value)voidsetTag(@NotNull java.lang.String key, @NotNull java.lang.String value)voidsetUser(@Nullable User user)
-
-
-
Method Detail
-
setUser
void setUser(@Nullable @Nullable User user)
-
addBreadcrumb
void addBreadcrumb(@NotNull @NotNull Breadcrumb crumb)
-
setTag
void setTag(@NotNull @NotNull java.lang.String key, @NotNull @NotNull java.lang.String value)
-
removeTag
void removeTag(@NotNull @NotNull java.lang.String key)
-
setExtra
void setExtra(@NotNull @NotNull java.lang.String key, @NotNull @NotNull java.lang.String value)
-
removeExtra
void removeExtra(@NotNull @NotNull java.lang.String key)
-
-