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

[REBOL] Re: pseudo-class inheritance at a price ?

From: chrismorency:videotron:ca at: 7-Oct-2001 23:14

Hi Phil,
> What about this scenario.... > > How would you transmit an object over an IP connection and be able to type > it? > > i.e. > parent class A -> child class B > parent class A -> child class C > > C: class-C-object-instance > > clientfd: open tcp://localhost:9999 > insert clientfd C( ? ) <- or perhaps use a refinement C/insert clientfd > close clientfd > > serverfd: open tcp://:9999 > listen: first serverfd > wait listen > obj: copy first listen <- or perhaps use a refinement obj/copy listen > clsoe first listen > close serverfd > > No answers here but something that would definitely entyice me to use the > class methods!
Hmm, I have to admit that I haven't been thinking about object over ip connection. However, since class are still object! and object-instance are object! too (in the rebol sense), I would expect to serve both class and object through a connection... Best, Chris