D
Dirk Reske
Hey,
I have a Server thats starts a thread for each incoming connection
class Server
{
public Event IncomingMessage;
....//Here a thread is listening for incoming network conenctions
//this thread starts a ServerThread for each connection
}
class ServerThread
{
...//Here we "speak" with the client
}
my question is: how can I call the IncomingMessage event from one of the
ServerThreads?
I have a Server thats starts a thread for each incoming connection
class Server
{
public Event IncomingMessage;
....//Here a thread is listening for incoming network conenctions
//this thread starts a ServerThread for each connection
}
class ServerThread
{
...//Here we "speak" with the client
}
my question is: how can I call the IncomingMessage event from one of the
ServerThreads?