Hi everyone, I've developed a kotlin library built...
# library-development
o
Hi everyone, I've developed a kotlin library built the idea that domain entities should own both their reactivity and their persistence. I would be happy to hear opiniones or anything about the project. In a tiny nutshell example:
Copy code
var rating: Double by reactiveProperty(initialRating)
That single line makes a property observable, you subscribe to events to react to its changes, and when it does, it persists itself to your DB asynchronously, ๐˜ข๐˜ถ๐˜ต๐˜ฐ๐˜ฎ๐˜ข๐˜จ๐˜ช๐˜ค๐˜ข๐˜ญ๐˜ญ๐˜บ. And much more. It also has kafka integration, and a well documented wiki, in case you want to take a look: github.com/octaviospain/lirp
๐Ÿ‘€ 1