In the run() method of a thread, earlier I had this code snippet:
updateConversationHandler.post(new updateUIThread(read,write,this.clientSocket,input,out));
It used to work. But when I call it using Executors, it fails:
executor = Executors.newFixedThreadPool(5);
executor.execute(new updateUIThread(read,write,this.clientSocket,input,out));
There's no response with the above code.
Any suggestions ??
Because your executor knows nothing about
updateConversationHandler