Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/perty/elmish-java

Just trying to see how an Elm programmer would do a service in Java.
https://github.com/perty/elmish-java

Last synced: about 5 hours ago
JSON representation

Just trying to see how an Elm programmer would do a service in Java.

Awesome Lists containing this project

README

        

# Elmish Java

If I would do TEA in Java, what would it be like?

The idea is a service that can get messages from outside.

The messages are taken to the update method which spits out a command
and a new version of the state. A command will be a function, I guess.
Learning about TEA by doing this.

To see the state, one must query the view which will return the state.

For efficiency reasons, the view can return a subset of the state. Maybe we
shall use graphql here.

Messages are queued.