[fpc-pascal] Best way to transfer data between applications?

Jorge Aldo G. de F. Junior jagfj80 at gmail.com
Tue Oct 30 19:15:59 CET 2012


Hm...

if you gave up using threads because of the problem with
synchronization then you might have a look at my pascal-actor-model
framework...

its a set of classes that implements Hewitt's Actor Model Concurrency
and its able to solve exactly that...

http://code.google.com/p/pascal-actor-model/

Code can run assynchronously or synchronously, depending on your needs.

theres a mainthreadqueue that lets actors talk to the main thread
(where the GUI elements usually reside) using blocking (with timeout)
protocol.

All messages are actors and can be streamed across the network, etc..
(i am in the process of implementing distributed computing based on
that actor model) etc...

there are already a lot of components and the basic actor
functionality is already working.



More information about the fpc-pascal mailing list