You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
s.summary = 'An implmentation of the JSON-RPC 2.0 specification for Objective-C protocols.'
s.description = <<-DESC
Implements the JSON-RPC 2.0 specification for protocols in Objective-C and Objective-C compatible protocols (marked
```@objc```) in Swift.
This allows you to write your RPC function declarations and callbacks in Objective-C or Swift using native types. The proxy will create the JSON-RPC request payload object, and convert the JSON-RPC response into a callback via a block/closure.
The proxy is transport independent. A client provides a conformant component that can take the request object and return the response, optionally including the JSON encoding/decoding.