Skip to main content Link Search Menu Expand Document (external link)

Runner.ts overview

Since v1.0.0


Exports Grouped by Category


Constructors

make

A Runner represents a physical application server that is capable of running entities.

Because a Runner represents a physical application server, a Runner must have a unique address which can be used to communicate with the server.

The version of a Runner is used during rebalancing to give priority to newer application servers and slowly decommission older ones.

Signature

declare const make: (props: { readonly address: RunnerAddress; readonly version: number }) => Runner

Source

Since v1.0.0

models

Runner (class)

A Runner represents a physical application server that is capable of running entities.

Because a Runner represents a physical application server, a Runner must have a unique address which can be used to communicate with the server.

The version of a Runner is used during rebalancing to give priority to newer application servers and slowly decommission older ones.

Signature

declare class Runner

Source

Since v1.0.0

[NodeInspectSymbol] (method)

Signature

declare const [NodeInspectSymbol]: () => string

Source

Since v1.0.0

[TypeId] (property)

Signature

readonly [TypeId]: symbol

Source

Since v1.0.0

type ids

TypeId

Signature

declare const TypeId: unique symbol

Source

Since v1.0.0

TypeId (type alias)

Signature

type TypeId = typeof TypeId

Source

Since v1.0.0