Default

Properties

Link copied to clipboard
open override val gcTime: Duration

The period during which the Key's return value, if not referenced anywhere, is temporarily cached in memory.

Link copied to clipboard
open override val keepAliveTime: Duration

Duration to remain state as an active.

Link copied to clipboard
open override val logger: LoggerFn? = null

Specifies the logger function.

Link copied to clipboard
open override val onError: (ErrorRecord, QueryModel<*>) -> Unit? = null

This callback function will be called if some query encounters an error.

Link copied to clipboard
open override val pauseDurationAfter: (Throwable) -> Duration?? = null

Determines whether query processing needs to be paused based on error.

Link copied to clipboard
open override val prefetchWindowTime: Duration

Maximum window time on prefetch processing.

Link copied to clipboard
open override val retryCount: Int = 3

The number of times to retry the operation.

Link copied to clipboard
open override val retryInitialInterval: Duration

The initial interval for retrying the operation.

Link copied to clipboard
open override val retryMaxInterval: Duration

The maximum interval for retrying the operation.

Link copied to clipboard
open override val retryMultiplier: Double = 1.5

The multiplier for the next interval.

Link copied to clipboard
open override val retryRandomizationFactor: Double = 0.5

The randomization factor for the next interval.

Link copied to clipboard
open override val retryRandomizer: Random

The random number generator for the next interval.

Link copied to clipboard
open override val revalidateOnFocus: Boolean = true

Automatically revalidate active Query when the window is refocused.

Link copied to clipboard
open override val revalidateOnReconnect: Boolean = true

Automatically revalidate active Query when the network reconnects.

Link copied to clipboard
open override val shouldRetry: (Throwable) -> Boolean

Specifies whether to retry the operation.

Link copied to clipboard
open override val shouldSuppressErrorRelay: (ErrorRecord, QueryModel<*>) -> Boolean? = null

Determines whether to suppress error information when relaying it using soil.query.core.ErrorRelay.

Link copied to clipboard
open override val staleTime: Duration

The duration after which the returned value of the fetch function block is considered stale.

Functions

Link copied to clipboard
fun QueryOptions.copy(staleTime: Duration = this.staleTime, gcTime: Duration = this.gcTime, prefetchWindowTime: Duration = this.prefetchWindowTime, pauseDurationAfter: (Throwable) -> Duration?? = this.pauseDurationAfter, revalidateOnReconnect: Boolean = this.revalidateOnReconnect, revalidateOnFocus: Boolean = this.revalidateOnFocus, onError: (ErrorRecord, QueryModel<*>) -> Unit? = this.onError, shouldSuppressErrorRelay: (ErrorRecord, QueryModel<*>) -> Boolean? = this.shouldSuppressErrorRelay, keepAliveTime: Duration = this.keepAliveTime, logger: LoggerFn? = this.logger, shouldRetry: (Throwable) -> Boolean = this.shouldRetry, retryCount: Int = this.retryCount, retryInitialInterval: Duration = this.retryInitialInterval, retryMaxInterval: Duration = this.retryMaxInterval, retryMultiplier: Double = this.retryMultiplier, retryRandomizationFactor: Double = this.retryRandomizationFactor, retryRandomizer: Random = this.retryRandomizer): QueryOptions

Copies the current QueryOptions with the specified settings.

Link copied to clipboard

Generates an RetryFn for Exponential Backoff Strategy.