Class RoundRobin<T, Token, A>

A generic RoundRobin implementation that cycles through token-based instance creators.

Type Parameters

  • T

    The type of instances created

  • Token = string | symbol | { [key: string]: any }

    The type of tokens

  • A extends any[] = any[]

    The type of arguments (extends any[])

Properties

Methods

Properties

tokens: Token[]

Methods

  • Creates a RoundRobin function that cycles through tokens

    Type Parameters

    • T
    • Token = string | symbol | { [key: string]: any }
    • A extends any[] = any[]

    Parameters

    Returns (...args: A) => T

    const rr = RoundRobin.create(['a', 'b'], (t) => () => ({ id: t }));