Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mongoose-os-libs/rpc-azure
RPC support for Azure
https://github.com/mongoose-os-libs/rpc-azure
Last synced: 3 months ago
JSON representation
RPC support for Azure
- Host: GitHub
- URL: https://github.com/mongoose-os-libs/rpc-azure
- Owner: mongoose-os-libs
- License: other
- Created: 2018-04-12T14:24:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-15T00:18:17.000Z (about 3 years ago)
- Last Synced: 2024-07-31T21:52:46.845Z (6 months ago)
- Language: C
- Size: 5.86 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mongoose-os - rpc-azure - RPC support for Azure (Awesome Mongoose OS [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) / Official Libraries)
README
# RPC support for Azure
## Direct Method RPC channel
Converts Azure [Direct Method](https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-direct-methods) calls into mOS RPC calls.
Azure DM method name becomes RCP method name, payload becomes method args.
Since DM is a one way mechanism (cloud calls device), outgoing requests are rejected.
## Cloud Messaging
It sould be possible to support RPC over [cloud-to-device and device-to-cloud messaging](https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messaging).
Unlike DM, it could be bi-directional, with device initiating the request.
This is no implemented yet.