Hi
Is it possible that there is a leak in TThreadPoolServer.java at line 123?
It is:
TTransport client = serverTransport_.accept();
WorkerProcess wp = new WorkerProcess(client);
while(true) { ...The Javadoc says the TTransport is a IO Wrapper like any Stream in Java. For me this means, after the client has been used, it needs a client.close(), doesnt it? I am facing a memory leak and thats where it crashes so i am wondering if this could be the problem. Regards Oliver
