https://github.com/msgflo/msgflo-rust
Participant support for Rust lang
https://github.com/msgflo/msgflo-rust
Last synced: 5 months ago
JSON representation
Participant support for Rust lang
- Host: GitHub
- URL: https://github.com/msgflo/msgflo-rust
- Owner: msgflo
- License: mit
- Created: 2015-06-23T09:50:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T12:04:26.000Z (over 5 years ago)
- Last Synced: 2025-07-17T00:30:42.142Z (7 months ago)
- Language: Rust
- Homepage:
- Size: 63.5 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://travis-ci.org/msgflo/msgflo-rust)
# msgflo-rust: Rust participant support for MsgFlo
[MsgFlo](https://github.com/msgflo/msgflo) is a distributed, polyglot FBP (flow-based-programming) runtime.
It integrates with other FBP tools like the [Flowhub](http://flowhub.io) visual programming IDE.
`msgflo-rust` makes it easy to create MsgFlo participants in Rust.
## Status
*Working prototype*
* Can expose a Rust function on AMQP with a single in/outport
* Sends the MsgFlo participant discovery message on startup
* Passes MsgFlo participant tests
* Not used in any applications yet (as far as we know)
See below TODO section for more notes
## Installing
Add to your `Cargo.toml`
[dependencies.msgflo]
git = "https://github.com/msgflo/msgflo-rust"
## API
See [./examples](./examples)
## License
[MIT](./LICENSE.md)
## TODO
0.1
* Allow any number of in/outports
* Allow sending multiple messages out
* Make error handling sane
* Add example of consuming/sending JSON data
* Add test for NACK on error condition
* Publish as Rust crate on http://crates.io
Later
* Support 'hidden' ports (not associated with a queue), used as proxies
* Support other transports, like MQTT