hello.I'm new to HawtDispatch and have a question about TcpTransport implement.my usage scenario is use TcpTransportServer to recieve clients endpoint data,in server endpoint use a TcpTransport wrapper a client,i use the follow code:Dispatcher dispatcher = new DispatcherConfig().createDispatcher();theTransport.setDispatchQueue(dispatcher.createQueue("clientxxx"));theTransport.setProtocolCodec(new MarsProtocolCodec());theTransport.setTransportListener(new MarsTransportListener());((TcpTransport)theTransport).start(Dispatch.NOOP);but it don't work,it can recieve any data from client.so i check the TcpTransport implement,i find in method "onConnected" is something odd,so i add one line"readSource.resume();“ in the method end. now it is work,it can recieve data from client.the problem is my wrong use, or is the "onConnected" bug?thanks in advance!--
You received this message because you are subscribed to the Google Groups "hawtdispatch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hawtdispatch...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.