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

[REBOL] Re: Object assignment

From: jeff:rebol at: 23-May-2001 12:03

Howdy, Charlie:
> Ok, next question, how can I pass that object to another > rebol application?
Serialize it through a tcp port, perhaps: other-app: tcp://localhost:9090 ; or tcp://somehost:9090 close insert open other-app mold myObject Write it to a file. Have the other read it. Use a named pipe, etc... If you've got Pro or Command you can invoke the other app with your object passed on the command line. Numerous ways with their various merits. It all depends on your requirements. -jeff