An open API service providing repository metadata for many open source software ecosystems.

Package Usage: go: github.com/streamingfast/rpc

Package gorilla/rpc is a foundation for RPC over HTTP services, providing access to the exported methods of an object through HTTP requests. This package derives from the standard net/rpc package but uses a single HTTP request per call instead of persistent connections. Other differences compared to net/rpc: Let's setup a server and register a codec and service: This server handles requests to the "/rpc" path using a JSON codec. A codec is tied to a content type. In the example above, the JSON codec is registered to serve requests with "application/json" as the value for the "Content-Type" header. If the header includes a charset definition, it is ignored; only the media-type part is taken into account. A service can be registered using a name. If the name is empty, like in the example above, it will be inferred from the service type. That's all about the server setup. Now let's define a simple service: The example above defines a service with a method "HelloService.Say" and the arguments and reply related to that method. The service must be exported (begin with an upper case letter) or local (defined in the package registering the service). When a service is registered, the server inspects the service methods and make available the ones that follow these rules: All other methods are ignored. Gorilla has packages with common RPC codecs. Check out their documentation:
2 versions
Latest release: about 6 years ago

View more package details: https://packages.ecosyste.ms/registries/proxy.golang.org/packages/github.com/streamingfast/rpc

View more repository details: http://repos.ecosyste.ms/hosts/GitHub/repositories/streamingfast%2Frpc

Dependent Repos 1

emiliocramer/lighthouse-geth-proxy

Size: 82.6 MB - Last synced: 11 months ago - Pushed: over 2 years ago