Diego Esmerio
Diego Esmerio
Client now has a `Bridge.AskServer` to do the same in the reverse direction on rc-7!
rc-9 changed the transport a little so the message that goes to server is now smaller.
5.0.0-rc-9-1 now have `AskAllClients` and `AskAllClientsIf`. The latter has a predicate function on the model and then both have an `IReplyChannel -> 'T -> unit` to process the value and...
Good thinking! I'll check the impact on bundle size if any and if I can keep the ServerHub as it is or give some access to SignalR Hub.
I'm not sure if it will be needed... Looks like there is good support for it: https://caniuse.com/#feat=websockets As Elmish doesn't do much with javascript disabled, maybe it will be unnecessary...
That's fair. Now that there's a possibility of having more options, I'll do it as a choice and if it works well I'll make it the default. I hope I...
I just read an article about using [flexible types for dependency injection](https://gfritz.github.io/posts/2020-12-05-fsadvent-2020-dependency-injection-using-flexible-types-and-type-inference.html) and I believe that that syntax would greatly help in making a type that merges multiple implementations into...
What if we add a new concept like listeners? A list of `Listeners` that will be called after every update with a way to stop listening, the current model and...
The list's position might create problems when we have stateful connections, like WebSockets. If you disable a timer and that pushes the connection sub up, the connection might close and...
Maybe some offline capabilities? Reloading takes too long and it downloads a lot of data. Having a service worker to cache the files might be a nice addition.