/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import {AsyncCallback, ErrorCallback} from "./basic"; /** * Provides WebSocket APIs. * * @since 6 * @syscap SystemCapability.Communication.NetStack */ declare namespace webSocket { /** * Creates a web socket connection. */ function createWebSocket(): WebSocket; export interface WebSocketRequestOptions { /** * HTTP request header. */ header?: Object; } export interface WebSocketCloseOptions { /** * Error code. */ code?: number; /** * Error cause. */ reason?: string; } export interface WebSocket { /** * Initiates a WebSocket request to establish a WebSocket connection to a given URL. * * @param url URL for establishing a WebSocket connection. * @param options Optional parameters {@link WebSocketRequestOptions}. * @param callback Returns callback used to return the execution result. * @permission ohos.permission.INTERNET */ connect(url: string, callback: AsyncCallback): void; connect(url: string, options: WebSocketRequestOptions, callback: AsyncCallback): void; connect(url: string, options?: WebSocketRequestOptions): Promise; /** * Sends data through a WebSocket connection. * * @param data Data to send. It can be a string(API 6) or an ArrayBuffer(API 8). * @param callback Returns callback used to return the execution result. * @permission ohos.permission.INTERNET */ send(data: string | ArrayBuffer, callback: AsyncCallback): void; send(data: string | ArrayBuffer): Promise; /** * Closes a WebSocket connection. * * @param options Optional parameters {@link WebSocketCloseOptions}. * @param callback Returns callback used to return the execution result. * @permission ohos.permission.INTERNET */ close(callback: AsyncCallback): void; close(options: WebSocketCloseOptions, callback: AsyncCallback): void; close(options?: WebSocketCloseOptions): Promise; /** * Enables listening for the open events of a WebSocket connection. */ on(type: 'open', callback: AsyncCallback): void; /** * Cancels listening for the open events of a WebSocket connection. */ off(type: 'open', callback?: AsyncCallback): void; /** * Enables listening for the message events of a WebSocket connection. * data in AsyncCallback can be a string(API 6) or an ArrayBuffer(API 8). */ on(type: 'message', callback: AsyncCallback): void; /** * Cancels listening for the message events of a WebSocket connection. * data in AsyncCallback can be a string(API 6) or an ArrayBuffer(API 8). */ off(type: 'message', callback?: AsyncCallback): void; /** * Enables listening for the close events of a WebSocket connection. */ on(type: 'close', callback: AsyncCallback<{ code: number, reason: string }>): void; /** * Cancels listening for the close events of a WebSocket connection. */ off(type: 'close', callback?: AsyncCallback<{ code: number, reason: string }>): void; /** * Enables listening for the error events of a WebSocket connection. */ on(type: 'error', callback: ErrorCallback): void; /** * Cancels listening for the error events of a WebSocket connection. */ off(type: 'error', callback?: ErrorCallback): void; } } export default webSocket;