Get desktop application:
View/edit binary Protocol Buffers messages
GetCurrencyList returns matching Currency values as list Example of a unary call
GetCurrencyStream returns matching Currencies as a server stream Example of using server to client stream.
SaveCurrencyStream sends multiple currencies to server to be saved returns a list of saved currency. Example of using client stream to server.
FindCurrencyStream sends a stream of CurrencyRequest to server and returns a stream of Currency values. Example of bi-directional stream
Currency represents currency information
Used as request type in: CurrencyService.SaveCurrencyStream
Used as response type in: CurrencyService.FindCurrencyStream, CurrencyService.GetCurrencyStream
Used as field type in:
CurrencyList used for list of currencies
Used as response type in: CurrencyService.GetCurrencyList, CurrencyService.SaveCurrencyStream
CurrencyRequest used to request currency
Used as request type in: CurrencyService.FindCurrencyStream, CurrencyService.GetCurrencyList, CurrencyService.GetCurrencyStream