UNPKG

botframework-streaming

Version:

Streaming library for the Microsoft Bot Framework

31 lines 1.48 kB
/** * @module botframework-streaming */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { INodeIncomingMessage, INodeBuffer, INodeSocket } from '../../interfaces'; import { NodeWebSocket } from '../nodeWebSocket'; import { NodeWebSocketFactoryBase } from './nodeWebSocketFactoryBase'; /** * Represents a NodeWebSocketFactory to create a WebSocket server. */ export declare class NodeWebSocketFactory extends NodeWebSocketFactoryBase { /** * Initializes a new instance of the [NodeWebSocketFactory](xref:botframework-streaming.NodeWebSocketFactory) class. */ constructor(); /** * Creates a [NodeWebSocket](xref:botframework-streaming.NodeWebSocket) instance. * * @remarks * The parameters for this method should be associated with an 'upgrade' event off of a Node.js HTTP Server. * @param req An IncomingMessage from the 'http' module in Node.js. * @param socket The Socket connecting the bot and the server, from the 'net' module in Node.js. * @param head The first packet of the upgraded stream which may be empty per https://nodejs.org/api/http.html#http_event_upgrade_1. * @returns A [NodeWebSocket](xref:botframework-streaming.NodeWebSocket) instance ready for streaming. */ createWebSocket(req: INodeIncomingMessage, socket: INodeSocket, head: INodeBuffer): Promise<NodeWebSocket>; } //# sourceMappingURL=nodeWebSocketFactory.d.ts.map