Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Open source

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.

Must be called within the init phase.

ParameterTypeDescription
protosetPathstringThe path of the protoset file. If no import paths are provided then “.” (current directory) is assumed to be the only import path.

Examples

JavaScript
import grpc from 'k6/net/grpc';

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