In message <[EMAIL PROTECTED]>, "Farooque Khan" writes: >I am particularly interested in telnet component.
Assuming you're talking about the TelnetClient class; there is no mutable state shared between TelnetClient instances. Therefore separate instances can be safely used in separate threads without creating an unexpected state. If you wish to concurrently call methods of a single TelnetClient instance from separate threads, you will need to protect access to the instance with a critical section. daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
