Форум: "Основная";
Текущий архив: 2004.01.09;
Скачать: [xml.tar.bz2];
ВнизПотоки и соккеты Найти похожие ветки
← →
Dmitriy_R (2003-12-22 12:57) [0]Народ подскажите кто знает, Лучше примером.
Как организовать работу соккета в виде отдельных потоков.
К примеру надо запустить серверный сокет на прослушивание, при коннекте к нему надо создать поток и в нем работать с клиентом до его отключения. Тоесть каждый клиент имеет свой отдельный поток.
В потоке для примера надо при подключении клиента отправит ему текст "Привет", при получении от клиента текста "Привет" отправить ему текст "Пока", при получении от клиента текста пока завершить соединение.
Это все написано для того чтобы лучше понять принцип работы соккетного соединения в потоке.
Если кому не трудно накидайте примерчик исходника, так проще понять. Заранее спасибо.
← →
Digitman (2003-12-22 13:44) [1]Occurs when the server socket needs to create a new execution thread for a connection to a client socket.
type
TGetThreadEvent = procedure (Sender: TObject; ClientSocket: TServerClientWinSocket; var SocketThread: TServerClientThread) of object;
property OnGetThread: TGetThreadEvent;
Description
Write an OnGetThread event handler to create a specialized descendant of TServerClientThread for the connection to the client socket. Create the new thread with the CreateSuspended parameter set to False, and return it in the SocketThread parameter. OnGetThread only occurs if there are no idle threads in the cache.
Most applications that use thread-blocking connections will want to create a new descendant of TServerClientThread in an OnGetThread event handler. This is because the default behavior of TServerClientThread uses the OnClientRead and OnClientWrite event handlers for reading and writing. These events occur on the server socket, which is not thread-local.
The Sender parameter is the TServerWinSocket object that received the client request. The ClientSocket parameter is the TServerClientWinSocket object that will communicate with the client socket.
Note: The OnGetThread event handler for TServerWinSocket is also set when setting the OnGetThread event handler of the associated TServerSocket.
Страницы: 1 вся ветка
Форум: "Основная";
Текущий архив: 2004.01.09;
Скачать: [xml.tar.bz2];
Память: 0.44 MB
Время: 0.01 c