npm.io
2.0.0 • Published 5d ago

@magmacomputing/tempo-plugin-ticker

Licence
Proprietary
Version
2.0.0
Deps
0
Size
19 kB
Vulns
0
Weekly
0

Tempo Plugin

@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-ticker

Note: This plugin requires @magmacomputing/tempo version 3.5.1 or higher.

Usage

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 Magma Computing documentation for detailed API methods and advanced usage examples.