slavery-js
Version:
A simple clustering app that allows you to scale an application on multiple thread, containers or machines
13 lines (10 loc) • 430 B
text/typescript
import Service from './Service.js';
import ServiceClient from './ServiceClient.js';
import RequestQueue from './RequestQueue.js';
import ProcessBalancer from './ProcessBalancer.js';
import Stash from './Stash.js';
import type { Options, ServiceAddress, SlaveMethods } from './types/index.js';
export default Service;
export { Options, ServiceAddress, RequestQueue,
SlaveMethods, ServiceClient, ProcessBalancer,
Stash };