in reply to Re^4: Is this module safe to use -> Threads::Queue::Any
in thread Is this module safe to use -> Threads::Queue::Any
thre would be no delimiter for me to parse string
I don't understand what you mean:
use Thread::Queue; $Q = new Thread::Queue;; $toQ = join $;, 'abc', 'cde', 'xyz'; print $toQ;; abc∟cde∟xyz $Q->enqueue( $toQ );; $fromQ = $Q->dequeue(); print $fromQ;; abc∟cde∟xyz print split $;, $fromQ;; abc cde xyz
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Is this module safe to use -> Threads::Queue::Any
by mr_p (Scribe) on Apr 16, 2010 at 19:27 UTC | |
by BrowserUk (Patriarch) on Apr 16, 2010 at 20:22 UTC | |
|
Re^6: Is this module safe to use -> Threads::Queue::Any
by mr_p (Scribe) on Apr 16, 2010 at 19:33 UTC | |
by BrowserUk (Patriarch) on Apr 16, 2010 at 20:19 UTC |