I have a server which listens for and sends messages.
I have a client who needs sends and receives messages. How to organize two-way communication without listening on the client side ?
Only the server side needs to listen when using NetworkComms.Net. Once the client connects to a server, the server can keep a reference to the incoming connection and use it to push messages back to the client for the duration of the connection lifetime. If the connection is closed only the client will be able to reinitialise it however.