赞
踩
socket.io是一个在客户端和服务器之间实现低延迟、双向和基于事件的通信的库。建立在 WebSocket 协议之上,并提供额外的保证,例如回退到 HTTP 长轮询或自动重新连接。
ohpm install @ohos/socketio
OpenHarmony ohpm 环境配置等更多内容,请参考如何安装 OpenHarmony ohpm 包
import { client_socket } from '@ohos/socketio';
client: client_socket = new client_socket();
this.client.set_open_listener(this.on_open.bind(this));
this.client.set_fail_listener(this.on_fail.bind(this));
this.client.set_reconnecting_listener(this.on_reconnecting.bind(this));
this.client.set_reconnect_listener(this.on_reconnect.bind(this));
this.client.set_close_listener(this.on_close.bind(this));
this.client.set_socket_open_listener(this.on_socket_open.bind(this));
this.client.set_socket_close_listener(this.on_socket_close.bind(this));
this.client.connect(uri) //uri: socket.io服务端地址
on_user_left_listener(event_json: string): void {
//回调数据处理
}
this.client.on("new message", this.on_new_message_listener.bind(this));
this.client.on("user joined", this.on_user_joined_listener.bind(this));
this.client.on("user left", this.on_user_left_listener.bind(this));
this.client.on("login", this.on_login_listener.bind(this));
this.client.emit("add user", username, this.on_emit_callback.bind(this));
this.client.emit("new message", message, this.on_emit_callback);
this.client.socket_close();
this.client.clear_socket_listeners();
client: client_socket = new client_socket();
set_open_listener(on_open: () => void)
set_fail_listener(on_fail: () => void)
set_reconnecting_listener(on_reconnecting: () => void)
set_reconnect_listener(on_reconnect: () => void)
set_close_listener(on_close: (reason: string) => void)
set_socket_open_listener(on_socket_open: (nsp: string) => void)
set_socket_close_listener(on_socket_close: (nsp: string) => void)
connect(uri: string)
clear_con_listeners()
clear_socket_listeners()
set_reconnect_attempts(attempts: number)
set_reconnect_delay(millis: number)
set_reconnect_delay_max(millis: number)
close()
sync_close()
opened(): boolean
get_sessionid(): string
on(event_name: string, on_event_listener: (event_json: string) => void)
socket_close()
on_error(on_error_listener: (message: string) => void)
off_error()
emit(name: string, message: string, on_emit_callback?: (emit_callback_json: string) => void)
git submodule
引入,下载代码时需加上--recursive
参数。git clone --recursive https://gitee.com/openharmony-tpc/openharmony_tpc_samples.git
在下述版本验证通过:
|---- socketio
| |---- entry # 示例代码文件夹
| |---- library # socket.io库
| |---- ets #对外接口目录
|---- client_socket.ets # 对外接口
|---- cpp # 组件代码目录
|---- src # 核心类目录
|---- client_socket.cpp # socket.io客户端NAPI层
| |---- README.md # 安装使用方法
为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr18.cn/F781PH
https://qr18.cn/F781PH
1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。