Popularity
4.1
Declining
Activity
0.0
Stable
3
5
0

Monthly Downloads: 16
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Network     Networking     Net    
Latest version: v0.1.2.1

net-mqtt-rpc alternatives and similar packages

Based on the "net" category.
Alternatively, view net-mqtt-rpc alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of net-mqtt-rpc or a related project?

Add another 'net' Package

README

mqtt-rpc

This package provides an RPC client interface over MQTT.

It's currently quite low-level and not very configurable, but I'm using it in a real application, so it at least needs to work for me. :)

Example:

  mc <- connectURI mqttConfig{_protocol=Protocol50} "mqtt://broker/"
  response <- call mc "some/path" "a message"
  BL.hPut stdout response