websocket_write(websockets)
websocket_write()所属R语言包:websockets
websocket_write
websocket_write
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Write data to a websocket connection.
写数据到一个WebSocket连接。
用法----------Usage----------
websocket_write(DATA, WS)
参数----------Arguments----------
参数:DATA
A character string or RAW vector to write.
一个字符串或写的RAW矢量。
参数:WS
A websocket client from a websocket server environment or a callback function. See the 'details' section below for more information.
一个WebSocket客户端从的WebSocket服务器环境或回调函数。查看“详细信息”部分以获取更多信息。
Details
详细信息----------Details----------
The WS argument must be a websocket client which is represented as a list. All connected clients are stored in the environment associated with a webserver in the client_sockets list. Because each connected client is itself a list, be careful to access a single client element, for example with the '[[' indexing operator, shown here accessing the first client socket: WS$client_sockets[[1]].
WS参数必须是一个WebSocket客户端,它表示为一个列表。所有连接的客户机相关联的与client_sockets列表的Web服务器环境中的存储。因为每个连接的客户端本身也是一个列表,要小心访问一个单一的客户端元素,例如,[索引操作,这里访问的第一个客户端套接字:WS$client_sockets[[1]]。
值----------Value----------
The number of bytes sent or an error. A returned value of -1 indicates that the websocket client socket should be closed.
发送的字节或一个错误的数目。一个返回值-1表示应关闭的WebSocket客户端套接字。
(作者)----------Author(s)----------
B. W. Lewis <blewis@illposed.net>
参见----------See Also----------
setCallback
setCallback
实例----------Examples----------
##[#]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|