UNPKG

@darlean/webgateways-suite

Version:

Web Gateways Suite that acts as Web/API Gateway that invokes actors to serve HTTP requests

14 lines (13 loc) 679 B
/** * Suite that provides the WebGateways service that makes it possible to have actors handle HTTP requests. * * @packageDocumentation */ import { ActorSuite } from '@darlean/base'; import { IConfigEnv } from '@darlean/utils'; import { IWebGatewaysCfg } from './intf'; export declare const WEBGATEWAY_HOST_ACTOR = "io.darlean.WebGatewayHostActor"; export * from './actor.impl'; export * from './intf'; export declare function createWebGatewaysSuite(config: IWebGatewaysCfg, appId: string): ActorSuite; export declare function createWebGatewaysSuiteFromConfig(config: IConfigEnv<IWebGatewaysCfg>, runtimeEnabled: boolean, appId: string): ActorSuite | undefined;