Beispiel #1
0
 /// <summary>
 /// This is a notification that a socket connection has been made
 /// and that a LogSocketReader is ready for reading.
 /// </summary>
 /// <param name="aLogSocketReader">The LogSocketReader that will read from the socket.</param>
 /// <returns>Always returns true, signifying that it is okay to accept more client connections.</returns>
 public bool ReaderReady(LogSocketReader aLogSocketReader)
 {
     aLogSocketReader.Logger = CreateNewLogger(aLogSocketReader);
     aLogSocketReader.Start();
     return(true);
 }
 /// <summary>
 /// This is a notification that a socket connection has been made
 /// and that a LogSocketReader is ready for reading.
 /// </summary>
 /// <param name="aLogSocketReader">The LogSocketReader that will read from the socket.</param>
 /// <returns>Always returns true, signifying that it is okay to accept more client connections.</returns>
 public bool ReaderReady(LogSocketReader aLogSocketReader)
 {
     aLogSocketReader.Logger = CreateNewLogger(aLogSocketReader);
     aLogSocketReader.Start();
     return true;
 }