Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Server Ports

From: holger:rebol at: 1-Feb-2001 8:57

On Thu, Feb 01, 2001 at 10:28:51AM -0600, Paul Tretter wrote:
> When creating server ports such as: > > server: open/lines/direct tcp://:113 > client: first server > > How do you keep the script from blocking other port activities with in the same script. In otherword this just hangs at client:first server and blocks other port activity until 'server receives data. The no-wait option seems to do the same thing. Any ideas?
You can insert p: wait [server otherports...] To wait for one of several ports to have data. The value returned by 'wait tells you which of the ports has data. no-wait only has an effect on 'copy. Without no-wait 'copy only returns on end-of-file. With no-wait 'copy returns immediately with whatever data is available. -- Holger Kruse [holger--rebol--com]