You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[17.6.1.4. Internal Timer Settings]()
This option can be used to disable the internal timer thread and such have the application supply external time events, as well as to set a timer resolution.
The next code snippet shows how to disable the internal timer thread via the configuration API:
[Configuration config = new Configuration();
config.getRuntime().getThreading().setInternalTimerEnabled(false);]()
This snippet of XML configuration leaves the internal timer enabled (the default) and sets a resolution of 200 milliseconds (the default is 100 milliseconds):
[<esper-configuration xmlns="http://www.espertech.com/schema/esper">
<runtime>
<threading>
<internal-timer enabled="true" msec-resolution="200"/>
</threading>
</runtime>
</esper-configuration>]()
We recommend that when disabling the internal timer, applications send an external timer event setting the start time before creating statements, such that statement start time is well-defined.
The text was updated successfully, but these errors were encountered:
https://esper.espertech.com/release-8.4.0/reference-esper/html_single/#apiruntime-time-internal
The text was updated successfully, but these errors were encountered: