大约有 17 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
...I DocumentationAll Packages | All Classes | Index | Frames No Frames SocketProperties | Methods | Events | Constants Packagelaya.netClasspublic class SocketInheritanceSocket EventDispatcher Object Socket 封装了 HTML5 WebSocket ,允许服务器端与客户端进行全双工(full-dupl...
来源: Laya2.0_api 发布时间: 20190513
...I DocumentationAll Packages | All Classes | Index | Frames No Frames SocketProperties | Methods | Events | Constants Packagelaya.netClasspublic class SocketInheritanceSocket EventDispatcher Object Socket 封装了 HTML5 WebSocket ,允许服务器端与客户端进行全双工(full-dupl...
来源: laya_api 发布时间: 20170929
...、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。let socket, output; class Network_Socket { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(Browse...
来源: Laya2.0_示例 发布时间: 20241117
...lic/Protected All Inherited Externals Only exported Menu Globals "laya/net/Socket" Socket Class Socket Socket 封装了 HTML5 WebSocket ,允许服务器端与客户端进行全双工(full-duplex)的实时通信,并且允许跨域通信。在建立连接后,服务器和 Browser/Client Agent...
来源: Laya3.0_api 发布时间: 20231115
...游戏如何监听网络是否连接 虽然单机H5游戏不需要建立webSocket实时通信,但是由于H5游戏在玩的时候是需要时不时从服务器下载资源的,所以为了确保在需要下资源的时候不断网,游戏能正常进行,游戏需要监听当前网路是否断...
来源: Laya_社区 发布时间: 20170206
LayaNative WebSocket无法触发onclose LayaNative2.6版本中,对Laya.Socket对象调用close方法后不会派发Event.CLOSE事件 2020-05-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠?...
来源: Laya_社区 发布时间: 20200520
websocket出错 socket=new Laya.Socket(); socket.connectByUrl("ws://192.168.1.229:8282"); //socket.connect("0.0.0.0",8383); output=socket.output; socket.on(Laya.Event.OPEN,this,onSocketOpen); socket.on(Laya.Event.CLOSE,this...
来源: Laya_社区 发布时间: 20170116
...rver; private static final String TAG = "HttpServer"; /** * 服务器端的socket */ ServerSocket server; /** * 服务器监听的端口号 */ public static final int PORT = 8080; // public static HttpServer getInstance(){ // if(httpServer == null){ // httpServer = new HttpServer(); // } // return h...
来源: Laya_社区 发布时间: 20160104
...无法连接wss 示例代码如下: const url = "wss://xxx.com:8888"; this.socket = new Laya.Socket(); this.socket.endian = Laya.Byte.BIG_ENDIAN; this.socket.on(Laya.Event.OPEN, this, this.onConnectSuccess); this.socket.on(Laya.Event.CLOSE, this, this.onDisonnect); this.socket.on(Laya.Event.ERROR, t...
来源: Laya_社区 发布时间: 20180910
websocket无法连接 this.socket = new Laya.Socket(); //这里我们采用大端 this.socket.endian = Laya.Byte.BIG_ENDIAN; this.socket.connectByUrl("ws://"+host+":"+port+"/hoopster"); //建立连接 this.socket.on(Laya.Event.OPEN, this, onOpen); this.socket.on(Laya.Event.MESSAGE, this, onReceive)...
来源: Laya_社区 发布时间: 20180312