Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.09 KB

File metadata and controls

26 lines (18 loc) · 1.09 KB
title excerpt canonicalUrl
Client.loadProtoset(protosetPath)
Loads and parses the protoset file (serialized FileDescriptor set) so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.

Loads and parses the protoset file (serialized FileDescriptor set) so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.

Must be called within the init phase.

Parameter Type Description
protosetPath string The path of the protoset file. If no import paths are provided then "." (current directory) is assumed to be the only import path.

Examples

import grpc from 'k6/experimental/grpc';

const client = new grpc.Client();
client.loadProtoset('./dummy.protoset');