# ReactAsyncRateLimiterOptions

# Interface: ReactAsyncRateLimiterOptions\<TFn, TSelected\>

Defined in: [react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts:13](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts#L13)

## Extends

- `AsyncRateLimiterOptions`\<`TFn`\>

## Type Parameters

### TFn

`TFn` *extends* `AnyAsyncFunction`

### TSelected

`TSelected` = \{
\}

## Properties

### onUnmount()?

```ts
optional onUnmount: (rateLimiter) => void;
```

Defined in: [react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts:21](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/src/async-rate-limiter/useAsyncRateLimiter.ts#L21)

Optional callback invoked when the component unmounts. Receives the rate limiter instance.
When provided, replaces the default cleanup (abort); use it to call reset(), add logging, etc.

#### Parameters

##### rateLimiter

[`ReactAsyncRateLimiter`](ReactAsyncRateLimiter.md)\<`TFn`, `TSelected`\>

#### Returns

`void`
