| This interface defines the methods that should be implemented by any
class that needs to be notified when its ready to accept more data.
Recommendations to be followed when implementing ClientWriteHandler
- Should have a default constructor.
- Should be thread safe.
- It should not store any data that may is associated with a particular client.
- If any client data is need to be saved from the client session,
it should be saved to a
ClientData class, which can be retrieved
using handler.getClientData() method.
since: 1.4.5 author: Akshathkumar Shetty |