0.1.0 • Published 2 years ago

@fluencelabs/avm-worker-common v0.1.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

AVM Worker common types

npm

AVM Worker is the abstraction over Aqua virtual machine (AVM) interpreter designed to allow run it in different contexts such as web workers in browsers or worker threads on nodejs.

The package provides common interface for AVM worker implementation as well as necessary TypeScript definitions.

Getting started

The main exports of the package is the AVM worker type :

export type AvmWorker = {
    init: (logLevel: LogLevel) => Promise<void>;
    terminate: () => Promise<void>;
    run: (
        air: string,
        prevData: Uint8Array,
        data: Uint8Array,
        params: {
            initPeerId: string;
            currentPeerId: string;
        },
        callResults: CallResultsArray,
    ) => Promise<InterpreterResult>;
};

To make a custom AVM worker three functions has to be implemented:

  • init - should allocate any resources needed for AVM worker (such as AVM interpreter memory or background worker state)
  • terminate - should deallocate all the resources used by the AVM worker
  • run - should pass the particle execution to actual AVM interpreter running in the context of implementation

Available implementations:

Contributing

While the project is still in the early stages of development, you are welcome to track progress and contribute. As the project is undergoing rapid changes, interested contributors should contact the team before embarking on larger pieces of work. All contributors should consult with and agree to our basic contributing rules.

License

Apache 2.0