ts-lambda-api - v2.5.6
    Preparing search index...

    Interface RetryToken

    interface RetryToken {
        getRetryCount(): number;
        getRetryDelay(): number;
        isLongPoll?(): boolean;
    }
    Index

    Methods

    • Returns number

      the current count of retry.

    • Returns number

      the number of milliseconds to wait before retrying an action.

    • Returns boolean

      whether the operation which generated this token is long polling.