in reply to Re: Can I expect to have ithreads available?
in thread Can I expect to have ithreads available?
This is as part of the client for a file-syncing application, somewhat like Dropbox. (It's a university project.) It basically has three broad responsibilities—monitoring the filesystem, watching the server for remote changes, and uploading and downloading files. I'd like to split these into three communicating threads or processes.
Using threads would allow me to pass full objects around through something like Thread::Queue, instead of having to serialize the data somehow onto a socket or pipe, so if that's a viable solution it strikes me as likely being better.
=cut
--Brent Royal-Gordon
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Can I expect to have ithreads available?
by rowdog (Curate) on Nov 02, 2009 at 06:36 UTC | |
by BrentDax (Hermit) on Nov 02, 2009 at 10:52 UTC |