Module: src/metadata

Metadata module This module defines the Metadata class, which represents header and trailer metadata for gRPC calls. Here is an example of how to use it: var metadata = new metadata_module.Metadata(); metadata.set('key1', 'value1'); metadata.add('key1', 'value2'); metadata.get('key1') // returns ['value1', 'value2']
Source:

Classes

Metadata