CCC Docs
GitHub
App
Docs
Playground
Preparing search index...
@ckb-ccc core
index
RetryOperationOptions
Type Alias RetryOperationOptions<T>
Values available to each retry attempt.
type
RetryOperationOptions
<
T
>
=
{
index
:
number
;
resolve
:
(
value
:
T
)
=>
RetryResult
<
T
>
;
reject
:
(
error
:
unknown
)
=>
RetryResult
<
T
>
;
next
:
()
=>
RetryResult
<
never
>
;
}
Type Parameters
T
Index
Properties
index
resolve
reject
next
Properties
index
index
:
number
Zero-based attempt index.
resolve
resolve
:
(
value
:
T
)
=>
RetryResult
<
T
>
reject
reject
:
(
error
:
unknown
)
=>
RetryResult
<
T
>
next
next
:
()
=>
RetryResult
<
never
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
index
resolve
reject
next
GitHub
App
Docs
Playground
CCC Docs
Loading...
Values available to each retry attempt.