@magmacomputing/tempo-plugin-ticker
v2.2.1
Published
Tempo plugin that provides a high-performance continuous execution loop (Ticker) based on temporal mathematics.
Maintainers
Readme
@magmacomputing/tempo-plugin-ticker
This is a premium plugin for the Tempo library that provides a high-performance continuous execution loop (Ticker) based on temporal mathematics.
Installation
npm install @magmacomputing/tempo-plugin-tickerUsage
import { Tempo } from '@magmacomputing/tempo';
import { TickerPlugin } from '@magmacomputing/tempo-plugin-ticker'; // Import may vary based on exact export
// A valid premium license token is required to use this plugin
// Pass the plugin to `Tempo.init` to ensure it registers securely alongside the license.
Tempo.init({
license: 'YOUR_LICENSE_TOKEN',
plugins: [TickerPlugin]
});
// You can now access Ticker-based execution loops through the Tempo API.Note: Be sure to refer to the official Tempo Plugin documentation for detailed API methods and advanced usage examples.
