EdgeAIG's picture
download
raw
1.31 kB
/**
* The `TestRunner` module assembles the smallest cluster runtime useful in
* tests: `Sharding` backed by in-memory message storage, in-memory runner
* storage, no-op runner transport, and always-healthy runner checks. It lets
* code that depends on cluster services exercise registration, shard
* coordination, and mailbox persistence without starting RPC servers or
* external databases.
*
* @since 4.0.0
*/
import * as Layer from "../../Layer.ts"
import * as MessageStorage from "./MessageStorage.ts"
import * as RunnerHealth from "./RunnerHealth.ts"
import * as Runners from "./Runners.ts"
import * as RunnerStorage from "./RunnerStorage.ts"
import * as Sharding from "./Sharding.ts"
import * as ShardingConfig from "./ShardingConfig.ts"
/**
* Layer that provides an in-memory cluster for testing.
*
* **Details**
*
* `MessageStorage` and `RunnerStorage` are backed by in-memory drivers.
*
* @category layers
* @since 4.0.0
*/
export const layer: Layer.Layer<
Sharding.Sharding | Runners.Runners | MessageStorage.MessageStorage | MessageStorage.MemoryDriver
> = Sharding.layer.pipe(
Layer.provideMerge(Runners.layerNoop),
Layer.provideMerge(MessageStorage.layerMemory),
Layer.provide([RunnerStorage.layerMemory, RunnerHealth.layerNoop]),
Layer.provide(ShardingConfig.layer())
)

Xet Storage Details

Size:
1.31 kB
·
Xet hash:
11c862d655fe57295a7af13b1dfe734867cd64a9b3d174539eeaff16bb641fb1

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.