Package io.sentry

Interface ISentryExecutorService

All Known Implementing Classes:
SentryExecutorService

@Internal public interface ISentryExecutorService
Sentry Executor Service that sends cached events and envelopes on App. start.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    close(long timeoutMillis)
    Closes the ThreadExecutor and awaits for the timeout
    boolean
    Check if there was a previous call to the close() method.
    @NotNull Future<?>
    schedule(@NotNull Runnable runnable, long delayMillis)
     
    @NotNull Future<?>
    submit(@NotNull Runnable runnable)
    Submits a Runnable to the ThreadExecutor
    <T> @NotNull Future<T>
    submit(@NotNull Callable<T> callable)
    Submits a Callable to the ThreadExecutor
  • Method Details