Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.12 KB

File metadata and controls

47 lines (28 loc) · 1.12 KB
id AngularAsyncBatcherOptions
title AngularAsyncBatcherOptions

Interface: AngularAsyncBatcherOptions<TValue, TSelected>

Defined in: angular-pacer/src/async-batcher/injectAsyncBatcher.ts:12

Extends

  • AsyncBatcherOptions<TValue>

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

onUnmount()?

optional onUnmount: (batcher) => void;

Defined in: angular-pacer/src/async-batcher/injectAsyncBatcher.ts:21

Optional callback invoked when the component is destroyed. Receives the batcher instance. When provided, replaces the default cleanup (cancel + abort); use it to call flush(), cancel(), add logging, etc. When using onUnmount with flush, guard your callbacks since the component may already be destroyed.

Parameters

batcher

AngularAsyncBatcher<TValue, TSelected>

Returns

void