servertype:=stThreadBlocking
or
servertype:=stNonBlocking在用法上呢?

解决方案 »

  1.   

    Set ServerType to stThreadBlocking to automatically spawn a new thread for each socket connection accepted by the server socket. When ServerType is stThreadBlocking, the execution of the connection thread is suspended while reading or writing until all information has been transferred over the connection. The thread for each connection generates OnClientRead or OnClientWrite events when the server socket needs to read or write.Set ServerType to stNonBlocking to handle all reading and writing over the socket connections asynchronously. When ServerType is stNonBlocking, all client connections are handled in a single execution thread by default. OnClientRead or OnClientWrite events occur when the client socket on the other end of one of the connections tries to send or receive information over the connection.Use a non-blocking socket when the socket needs to synchronize reading and writing with client sockets.一个阻塞 一个非阻塞 非阻塞自己必须去处理这些线程的同步。。