Difference between revisions of "GRPC"
VeriBlockTim (talk | contribs) (Marked this version for translation) |
|||
Line 7: | Line 7: | ||
See: [[Main_Page]] | See: [[Main_Page]] | ||
+ | <!--T:2--> | ||
__TOC__ | __TOC__ | ||
− | == Overview == | + | == Overview == <!--T:3--> |
+ | <!--T:4--> | ||
NodeCore exposes an GRPC API. The [[NodeCore_CommandLine]] calls this API, but any GRPC-programming language can call it as well. | NodeCore exposes an GRPC API. The [[NodeCore_CommandLine]] calls this API, but any GRPC-programming language can call it as well. | ||
+ | <!--T:5--> | ||
See GRPC: https://grpc.io/docs/ | See GRPC: https://grpc.io/docs/ | ||
+ | <!--T:6--> | ||
The release package contains the proto file, an html specification, and several popular pre-compiled outputs: | The release package contains the proto file, an html specification, and several popular pre-compiled outputs: | ||
+ | <!--T:7--> | ||
https://github.com/VeriBlock/nodecore-releases/releases/download/v0.4.1-grpc/nodecore-idl_generate_12_artifacts.zip | https://github.com/VeriBlock/nodecore-releases/releases/download/v0.4.1-grpc/nodecore-idl_generate_12_artifacts.zip | ||
+ | <!--T:8--> | ||
This repo is a C# sample how to call common GRPC code: | This repo is a C# sample how to call common GRPC code: | ||
+ | <!--T:9--> | ||
https://github.com/VeriBlock/VeriBlock.Demo.Rpc.Client | https://github.com/VeriBlock/VeriBlock.Demo.Rpc.Client | ||
</translate> | </translate> |
Revision as of 22:48, 16 April 2019
See: Main_Page
Contents
Overview
NodeCore exposes an GRPC API. The NodeCore_CommandLine calls this API, but any GRPC-programming language can call it as well.
See GRPC: https://grpc.io/docs/
The release package contains the proto file, an html specification, and several popular pre-compiled outputs:
This repo is a C# sample how to call common GRPC code: