is neko web do not support Thread?
nekotools server -p 2000 -h 10.143.26.11 -d ./
I try to compile neko and set for my http server ,and run this code
Thread.create(threadListen)
function threadListen() {
trace("---");
while (true) {
try {
var text = socket.input.readLine();
console.write(text + '\n');
} catch (z:Dynamic) {
console.write('Connection lost.\n');
console.close();
return;
}
}
}
is neko web not support thread?