Networking with Entity Systems

Hey fellas!
Can someone describe a feasible way to integrate networking with an entity system?

Im messing with artemis at the moment and not sure how to integrate user commands.
As always, any help is appreciated.

In Mythruna, the client-side ES is read-only. Only the ES on the server can be modified.

Then it’s just a request/response sort of thing. I try to be asynch for queries and stuff but my ES is flexible that way. I don’t know about artemis. It may present its own challenges.

Oh! gotcha.

I think i can get access to any component as needed asynchronously with artemis, but worst case is to make it into a system that runs at the beginning of the loop. at least thats how it seems at this point.

Read-only definitely clears things up, thanks Paul.