Re: Component question/advice

2019-09-24 Thread Matthew Downey
One thing you could consider is constructing the individual pieces of your system as system-maps that you can merge together. (A pattern from " Tips and Tricks for Component"

Re: Component question/advice

2019-09-16 Thread Orestis Markou
I did something similar for a database connection component, that could connect to multiple databases at runtime and had to maintain internal state. I didn’t need to make the individual connections components, but this was because the DB driver handles state internally. In my case I used an at

Component question/advice

2019-09-16 Thread Don Jackson
Hello, I'm writing an app/system that subscribes to a number of feeds, the number and configuration of the feeds is a configurable run-time thing. Seems like I should have a Feed component, which is passed its config when instantiated. But having a named slot in the system for each feed would be