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

[REBOL] Re: multi-threading

From: agem:crosswinds at: 10-Jul-2001 0:09

RE: [REBOL] multi-threading [robert--wilke--stud--fh-regensburg--de] wrote:
> Hi I am new to REBOL and I have an important question: > > Does REBOL support something like "Multi-Threading" (Java,NT) or > fork() (like on UNIX-Machines), because if not - it will not have a > great potential, even if it is a great and unique language - so don't > get me wrong. But, maybe somebody can answer the question and > also give me some resources where I can find more technical > details how the REBOL interpreter works and not just the language > itself. >
something like "Multi-Threading" yes, like java,nt or unix not. events have to be handled completely, before the next can be processed. but one can trigger new events by timer to run permanently. try boids on esoup and use the gui while the animations continues :) thats very near to real threads, but a lot simpler to synchronize. JBed uses similar threading for its realtime part. its a dr-dobbs-mentioned realtime-java. JBed guis say its a lot easier to predict runtime (higly important for hard realtime).
> Thanks, > Rob >
;-) Volker