@senzing/sz-sdk-typescript-grpc - v4.0.0-beta.4.0
    Preparing search index...

    Interface SzGrpcEnvironmentOptions

    interface SzGrpcEnvironmentOptions {
        client?: any;
        connectionString?: string;
        credentials?: ChannelCredentials;
        grpcConnectionReadyTimeOut?: number;
        grpcOptions?: ChannelOptions;
    }

    Hierarchy

    • SzEnvironmentOptions
      • SzGrpcEnvironmentOptions
    Index

    Properties

    client?: any

    this will be an instance of any of the Senzing grpc client modules generated from the protoc This will be overridden in the derived class with the specific client type that applies to that class

    connectionString?: string

    the grpc connection string. ${HOST}:${PORT}

    credentials?: ChannelCredentials

    channel credentials to use for authentication. defaults to "grpc.credentials.createInsecure()"

    grpcConnectionReadyTimeOut?: number

    the amount to wait in seconds before giving up on establishing a connection to the grpc server

    grpcOptions?: ChannelOptions