Context typedef

Context = Map<String, String>

A request context. Context is used to transmit metadata about a request from the server to the client, such as Quality-of-Service (QoS) parameters. Each operation on the client has a Context as its implicit final parameter.

Implementation

typedef Context = Map<String, String>;