Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/perty/elmish-java
- Owner: perty
- Created: 2020-11-08T14:41:30.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-20T21:57:15.000Z (over 2 years ago)
- Last Synced: 2023-03-11T03:57:22.002Z (over 1 year ago)
- Language: Java
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.