search for: mydatatyp

Displaying 2 results from an estimated 2 matches for "mydatatyp".

Did you mean: mydatatype
2008 Sep 30
0
[LLVMdev] Integer handling
...nt of time (the Actor model uses unbounded nondeterminism, yea, try imagining that), when it does receive it then in the event loop it parses it like this (this is more erlangish syntax since I have not finalized my syntax for the receiving loop in my language): receive -> {"Calc", MyDataType newData, PID sender} -> // calculate something from newData and send the 'Resp'onse back to the sender sender.sendMessage({"Resp", SomeFunc(newData)}); {"Get", PID sender} -> // they just want the current data status sent back to them as a 'Resp...
2008 Sep 30
2
[LLVMdev] Integer handling
OvermindDL1 wrote: > > It is using the Actor-Oriented model, not Object-Oriented. > /* snip */ > By keeping the type system based on the actual types it allows > arbitrary message passing to any other actor without needing to load > any code relating to the actors, you can just send a structure with > the appropriate ID and format and it will 'just work' as the