data stream processing
Phil Davis
revdev at pdslabs.net
Thu Aug 2 11:43:22 EDT 2007
Hi Viktoras,
Can the data stream come to the Rev app through a network port? If so, the easy
solution would be to do something like this:
on openStack
accept datagram connections on port xx \
with message "handleData"
end openStack
on handleData pIPAddress, pData
-- handle the data
end handleData
Then each time data arrives it will be handled, no matter how often or how
infrequent.
Just a thought...
Phil Davis
viktoras didziulis wrote:
> Hi.
>
> I have a console application that constantly spews out numbers at a rate
> of 3 numbers per second. The task is to read the number and display it
> in a field, then as soon as the next number arrives it should replace
> the field's contents with new number visualise it graphicaly and so on
> ad infinitum in realtime...
> I can't figure it out - Revolution expects the data stream coming from
> outside will end at some point and therefore waits. But the process is
> in fact never ending. Is there a way to handle this kind of constant
> data stream in Revolution ?
>
> Best wishes
> Viktoras
More information about the use-livecode
mailing list