Access the Senzing Product module via gRPC

Hierarchy

  • SzGrpcBase
    • SzGrpcProduct

Implements

  • SzProduct

Properties

grpcConnectionReadyTimeOut: number = DEFAULT_CONNECTION_READY_TIMEOUT
productId: string = "5056"

Methods

  • Parameters

    • OptionalsecondsFromNow: number

    Returns Date

  • Retrieves information about the currently used license.

    Returns Promise<{ [key: string]: any }>

    JSON document containing Senzing license metadata.

  • Returns the version of Senzing.

    Returns Promise<{ [key: string]: any }>

    JSON document containing metadata about the Senzing Engine version being used.

  • Wait for the client to be ready. The callback will be called when the client has successfully connected to the server, and it will be called with an error if the attempt to connect to the server has unrecoverablly failed or if the deadline expires. This function will make the channel start connecting if it has not already done so.

    Parameters

    • deadline: Date
    • cb: (error: null | Error) => void

    Returns any