Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tiny formatting tweaks in README #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ Missionary is a reactive dataflow programming toolkit providing referentially tr
; Each change on the input propagates atomically through the graph. 3 is an inconsistent state and is therefore not computed.
```

Features
## Features
* Discrete event streams with backpressure
* Continuous-time signals with lazy sampling
* Correct incremental maintenance of dynamic DAGs without inconsistent states (aka FRP glitches)
* Correct error handling by default. Strict process supervision provides transparent propagation of cancellation and failure, with strong resource cleanup guarantees
* Asynchronous design for efficiency and ClojureScript compatibility
* Reactive Streams compliant

Key ideas
## Key ideas
* Unification of functional effect systems and FRP / dataflow programming
* Unification of continuous-time and discrete-time primitives under the common Flow protocol
* Embrace and reuse Clojure core abstractions including collections, transducers, reducing functions and reference types
Expand Down Expand Up @@ -97,18 +97,18 @@ providing the best of both worlds.

API Reference: [`missionary.core`](https://cljdoc.org/d/missionary/missionary/CURRENT/api/missionary.core)

Discussions:
### Discussions
* [ClojureVerse (2019)](https://clojureverse.org/t/missionary-new-release-with-streaming-support-design-notes/4510)
* [reddit (2021)](https://www.reddit.com/r/Clojure/comments/k2db8k/leonoelmissionary_a_functional_effect_and/)

Tutorials
## Tutorials
1. [Hello task](doc/tutorials/hello_task.md)
2. [Hello flow](doc/tutorials/hello_flow.md)
3. [Comparison to RxJava](doc/tutorials/rx_comparison.md)

How-to guides: [cookbook](https://github.com/leonoel/missionary/wiki)

Explanations
### Explanations
* [re:Clojure 2021](https://www.youtube.com/watch?v=tV-DoiGdUIo)

## Community
Expand Down