I written a client server program using the Thrift framework, since the server is coded in C# and the clients are in Java.My question is, how can I make a message listener using Thrift? For example, my program has a list that the server sends to each client when one connects to it. If I have three clients connected to the server, and one of them modifies that list (which is declared before the server starts), how can I notify the rest of the clients that the list was modified?
Thank you.