@wppconnect-team/wppconnect - v1.36.4
    Preparing search index...

    Class MsgLoad

    51612

    951612 >= 2.2222.8

    Hierarchy (View Summary)

    Index

    Constructors

    • Parameters

      • Optionale: any
      • Optionalt: { parent: any }

      Returns MsgLoad

    Properties

    findFirst: {
        <S extends MsgModel>(
            predicate: (
                value: MsgModel,
                index: number,
                obj: MsgModel[],
            ) => value is S,
            thisArg?: any,
        ): S;
        (
            predicate: (value: MsgModel, index: number, obj: MsgModel[]) => unknown,
            thisArg?: any,
        ): MsgModel;
    }

    Type declaration

      • <S extends MsgModel>(
            predicate: (
                value: MsgModel,
                index: number,
                obj: MsgModel[],
            ) => value is S,
            thisArg?: any,
        ): S
      • Returns the value of the first element in the array where predicate is true, and undefined otherwise.

        Type Parameters

        Parameters

        • predicate: (value: MsgModel, index: number, obj: MsgModel[]) => value is S

          find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.

        • OptionalthisArg: any

          If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

        Returns S

      • (
            predicate: (value: MsgModel, index: number, obj: MsgModel[]) => unknown,
            thisArg?: any,
        ): MsgModel
      • Parameters

        • predicate: (value: MsgModel, index: number, obj: MsgModel[]) => unknown
        • OptionalthisArg: any

        Returns MsgModel

    loadAroundPromise?: Promise<any>
    loadEarlierPromise?: Promise<any>
    loadRecentPromise?: Promise<any>
    modelClass: MsgModel
    msgLoadState: MsgLoadState
    onResume: (...args: any) => any
    cachePolicy: { id: string; policy: string; trigger: string }
    comparator: (a: any, b: any) => number
    model: any

    Accessors

    • get length(): number

      Returns number

    Methods

    • Parameters

      • e: Stringable

      Returns MsgModel

    • Parameters

      • position: number

      Returns MsgModel

    • Alias of on

      Parameters

      • eventName: Event
      • listener: Listener
      • Optionalcontext: any

      Returns this

      on

    • Returns void

    • Alias of trigger

      Parameters

      • eventName: Event
      • ...args: any[]

      Returns this

      trigger

    • Determines whether all the members of an array satisfy the specified test.

      Type Parameters

      Parameters

      • predicate: (value: MsgModel, index: number, array: MsgModel[]) => value is S

        A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns this is S[]

    • Determines whether all the members of an array satisfy the specified test.

      Parameters

      • predicate: (value: MsgModel, index: number, array: MsgModel[]) => unknown

        A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns boolean

    • Returns the elements of an array that meet the condition specified in a callback function.

      Type Parameters

      Parameters

      • predicate: (value: MsgModel, index: number, array: MsgModel[]) => value is S

        A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns S[]

    • Returns the elements of an array that meet the condition specified in a callback function.

      Parameters

      • predicate: (value: MsgModel, index: number, array: MsgModel[]) => unknown

        A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns MsgModel[]

    • Parameters

      • id: Stringable
      • Optionaloptions: { logOnSend?: boolean; set?: boolean }

      Returns Promise<MsgModel>

    • Parameters

      • id: Stringable
      • Optionaloptions: { logOnSend?: boolean; set?: boolean }

      Returns Promise<MsgModel>

    • Performs the specified action for each element in an array.

      Parameters

      • callbackfn: (value: MsgModel, index: number, array: MsgModel[]) => void

        A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

      Returns void

    • Parameters

      • id: MsgModel | Stringable
      • Optionaloptions: any

      Returns MsgModel

    • Parameters

      • e: Stringable

      Returns MsgModel

    • Parameters

      Returns boolean

    • Returns the index of the first occurrence of a value in an array, or -1 if it is not present.

      Parameters

      • searchElement: MsgModel

        The value to locate in the array.

      • OptionalfromIndex: number

        The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.

      Returns number

    • Parameters

      • eventName: Event

      Returns boolean

    • Parameters

      • model: any

      Returns model is MsgModel

    • Parameters

      • id: Stringable

      Returns boolean

    • Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.

      Parameters

      • searchElement: MsgModel

        The value to locate in the array.

      • OptionalfromIndex: number

        The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.

      Returns number

    • Parameters

      • context: any

        The value of this provided for the call to listener

      • eventName: Event

        The name of the event.

      • Optionallistener: Listener

        The callback function.

      Returns this

    • Parameters

      • context: any

        The value of this provided for the call to listener

      • eventName: Event

        The name of the event.

      • Optionallistener: Listener

        The callback function.

      Returns this

    • Parameters

      • context: any

        The value of this provided for the call to listener

      • eventName: Event

        The name of the event.

      • Optionallistener: Listener

        The callback function.

      Returns this

    • Calls a defined callback function on each element of an array, and returns an array that contains the results.

      Type Parameters

      • U

      Parameters

      • callbackfn: (value: MsgModel, index: number, array: MsgModel[]) => U

        A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

      Returns U[]

    • Removes the specified listener from the listener array for the event named eventName.

      Parameters

      • OptionaleventName: Event

        The name of the event.

      • Optionallistener: Listener

        The callback function.

      • Optionalcontext: any

        The value of this provided for the call to listener

      Returns this

      Returns a reference to the EventEmitter, so that calls can be chained.

    • Adds the listener function to the end of the listeners array for the event named eventName.

      Parameters

      • eventName: Event

        The name of the event.

      • listener: Listener

        The callback function.

      • Optionalcontext: any

        The value of this provided for the call to listener

      Returns this

      Returns a reference to the EventEmitter, so that calls can be chained.

    • Adds a one-time listener function for the event named eventName.

      Parameters

      • eventName: Event

        The name of the event.

      • listener: Listener

        The callback function.

      • Optionalcontext: any

        The value of this provided for the call to listener

      Returns this

      Returns a reference to the EventEmitter, so that calls can be chained.

    • Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

      Parameters

      • callbackfn: (
            previousValue: MsgModel,
            currentValue: MsgModel,
            currentIndex: number,
            array: MsgModel[],
        ) => MsgModel

        A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.

      Returns MsgModel

    • Parameters

      Returns MsgModel

    • Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

      Type Parameters

      • U

      Parameters

      • callbackfn: (
            previousValue: U,
            currentValue: MsgModel,
            currentIndex: number,
            array: MsgModel[],
        ) => U

        A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.

      • initialValue: U

        If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.

      Returns U

    • Parameters

      • value: MsgModel | MsgModel[]
      • Optionaloptions: { index?: boolean; silent?: boolean }

      Returns MsgModel[]

    • Removes all listeners.

      Returns this

      Returns a reference to the EventEmitter, so that calls can be chained.

    • Alias of off

      Parameters

      • OptionaleventName: Event
      • Optionallistener: Listener
      • Optionalcontext: any

      Returns this

      off

    • Parameters

      • e: number
      • t: number

      Returns MsgModel[]

    • Parameters

      • e: any
      • t: any

      Returns void

    • Parameters

      • e: any
      • t: any

      Returns void

    • Returns void

    • Returns void

    • Returns any[]

    • Returns a copy of a section of an array. For both start and end, a negative index can be used to indicate an offset from the end of the array. For example, -2 refers to the second to last element of the array.

      Parameters

      • Optionalstart: number

        The beginning index of the specified portion of the array. If start is undefined, then the slice begins at index 0.

      • Optionalend: number

        The end index of the specified portion of the array. This is exclusive of the element at the index 'end'. If end is undefined, then the slice extends to the end of the array.

      Returns MsgModel[]

    • Determines whether the specified callback function returns true for any element of an array.

      Parameters

      • predicate: (value: MsgModel, index: number, array: MsgModel[]) => unknown

        A function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.

      • OptionalthisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns boolean

    • Parameters

      • Optionaloptions: { silent?: boolean }

      Returns this

    • Parameters

      • Optionalcontext: any
      • OptionaleventName: Event
      • Optionallistener: Listener

      Returns this

    • Returns any[]

    • Synchronously calls each of the listeners registered for the event named eventName, in the order they were registered, passing the supplied arguments to each.

      Parameters

      • eventName: Event
      • ...args: any[]

      Returns this

      Returns a reference to the EventEmitter, so that calls can be chained.

    • Alias of off

      Parameters

      • OptionaleventName: Event
      • Optionallistener: Listener
      • Optionalcontext: any

      Returns this

      off

    • Parameters

      • id: Stringable
      • Optionaloptions: { logOnSend?: boolean; set?: boolean }

      Returns Promise<MsgModel>

    • Parameters

      • ids: Stringable[]

      Returns MsgModel[]