Hello,

In a IoHandler if I do:

session.write(something);
session.close( );

Is it OK? It is possible that session.close( ) will be called in the
middle of session.write(something)?

Or I should do it like this:

session.write(something).join( );
session.close( );

Thanks,

Bogdan

Reply via email to