I'm currently working on an application sending TCP requests to a server. My problem is only on client side. Responses are handled via some delegates to keep things asynchronous. Here is a signature of one request method :
public void RequestOne(Object data, MyCallback callback)
But now I'm dealing with a delegate dictionary (resquest,delegate) to keep track of requests supposed to update the client state.
I don't think it's the right way to do it. I'm looking for a better architecture.
Any ideas / pattern ?