Can you clarify what you mean by this? Your application controls when the data is published as it is the one that calls the "write" operation on the DataWriter. But I assume that you have something else in mind here...
I using udp for transport every second message with size 400kb. Let say i don't want to use (we are speaking about java) wait\sleep.
The question if i have something like time based filter on publisher side, or I must create logical unit for calling writer manually(some timer I mean)?
Hello,
Can you clarify what you mean by this? Your application controls when the data is published as it is the one that calls the "write" operation on the DataWriter. But I assume that you have something else in mind here...
Gerardo
I using udp for transport every second message with size 400kb. Let say i don't want to use (we are speaking about java) wait\sleep.
The question if i have something like time based filter on publisher side, or I must create logical unit for calling writer manually(some timer I mean)?
Yes you would need to create your own logical unit that wakes up on a timer and calls the DataWriter each time.
If you are using Java you could use a java.util.Timer object to schedule your periodic task encapsulated in a java.util.TimerTask
Gerardo
Thanks, Gerardo.