Property SLSnippetTrigger.TSLTrigger.SynchronizeTollerance
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLTrigger
Contents |
Syntax
Delphi:
property SynchronizeTollerance : Integer read FSynchronizeTollerance write SetSynchronizeTollerance default 5;
C++ Builder:
__property int SynchronizeTollerance = { read=FSynchronizeTollerance, write=SetSynchronizeTollerance, default=5 };
Summary
Specifies the number of buffers to be kept in queue for synchronization between triggers.
Description
Use this property to specify the number of buffers to be kept
in a queue inside the trigger, so it can be triggered by
another trigger and to have enough data for the triggers to
be properly synchronized.
Each trigger can process data from separated thread, and the data usually is not synchronized.
That required some of the triggers to keep some old data so they can generate a snipped of it if their thread is faster than the thread of the triggering trigger.
This property is used only when one trigger controls another one.