Am 21.08.2013 15:40, schrieb Jack Applegame:

Looks like callback task from listenTCP owns read context of connection. But is it possible to write data from another task?

Since 0.7.16 TCPConnection instances are only owned as long as they
are in use (e.g. while read() or write() are in progress) and the
read part of a connection is independent of the write part. So as long
as you make sure that no two threads read concurrently or write
concurrently, the connection can be shared by any number of tasks.