Does anyone knows if perl supports a task scheduler?
I am working on a c# program that controls a bunch of perl scripts. The perl script talked to some device over the socket interface. The device, "target" , is a embedded system device that require real time interaction.
One of the requirements I need to fulfill is that when I receive message "A" from the device, I need to schedule an event that is going to happen in 15 miliseconds in the future. This event is going to send the message to UT. We call it "B" here. The delay function wouldn't work here because other messages shouldn't be blocked because of Message "B". Sometimes, I also need to send Message "B" every 15 miliseconds.
or Maybe Perl is not a good choice here.
Thanks