Hi all,

Does
 SocketConnector connector = new SocketConnector(); connector.connect( 
                new InetSocketAddress( "localhost",
                Integer.parseInt( 54321 ) ),
                new MyProtocolHandler() );Uses MyProtocolHandler() from a pre 
used cache?I have an application that transmit images to a server.Each images 
are not sent via bulk and are sent independently,Because of that, i would need 
to create a new MyProtocolHandler() instance for every connection.Would there 
be a better implementation for this?

Reply via email to