From 55a692bbc2c24c854694df6902d23b3ee08bf665 Mon Sep 17 00:00:00 2001 From: normal Date: Tue, 17 Nov 2015 02:29:19 +0000 Subject: socket: update doc for recvfrom_nonblock [ci skip] * ext/socket/lib/socket.rb (Socket#recvfrom_nonblock): UDPSocket#recvfrom_nonblock): update doc for `exception: false` and destination buffer [ruby-core:69542] [Feature #11229] [ruby-core:69543] [Feature #11242] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/lib/socket.rb | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'ext/socket/lib') diff --git a/ext/socket/lib/socket.rb b/ext/socket/lib/socket.rb index c9929ae1c1..eaec14f933 100644 --- a/ext/socket/lib/socket.rb +++ b/ext/socket/lib/socket.rb @@ -456,8 +456,7 @@ class Socket < BasicSocket end # call-seq: - # socket.recvfrom_nonblock(maxlen) => [mesg, sender_addrinfo] - # socket.recvfrom_nonblock(maxlen, flags) => [mesg, sender_addrinfo] + # socket.recvfrom_nonblock(maxlen[, flags[, outbuf[, opts]]]) => [mesg, sender_addrinfo] # # Receives up to _maxlen_ bytes from +socket+ using recvfrom(2) after # O_NONBLOCK is set for the underlying file descriptor. @@ -473,6 +472,8 @@ class Socket < BasicSocket # === Parameters # * +maxlen+ - the maximum number of bytes to receive from the socket # * +flags+ - zero or more of the +MSG_+ options + # * +outbuf+ - destination String buffer + # * +opts+ - keyword hash, supporting `exception: false` # # === Example # # In one file, start this first @@ -511,7 +512,12 @@ class Socket < BasicSocket # # If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN, # it is extended by IO::WaitReadable. - # So IO::WaitReadable can be used to rescue the exceptions for retrying recvfrom_nonblock. + # So IO::WaitReadable can be used to rescue the exceptions for retrying + # recvfrom_nonblock. + # + # By specifying `exception: false`, the options hash allows you to indicate + # that accept_nonblock should not raise an IO::WaitReadable exception, but + # return the symbol :wait_readable instead. # # === See # * Socket#recvfrom @@ -1204,7 +1210,7 @@ end class UDPSocket < IPSocket # call-seq: - # udpsocket.recvfrom_nonblock(maxlen [, flags [, options]]) => [mesg, sender_inet_addr] + # udpsocket.recvfrom_nonblock(maxlen [, flags[, outbuf [, options]]]) => [mesg, sender_inet_addr] # # Receives up to _maxlen_ bytes from +udpsocket+ using recvfrom(2) after # O_NONBLOCK is set for the underlying file descriptor. @@ -1220,6 +1226,7 @@ class UDPSocket < IPSocket # === Parameters # * +maxlen+ - the number of bytes to receive from the socket # * +flags+ - zero or more of the +MSG_+ options + # * +outbuf+ - destination String buffer # * +options+ - keyword hash, supporting `exception: false` # # === Example @@ -1254,8 +1261,8 @@ class UDPSocket < IPSocket # # === See # * Socket#recvfrom - def recvfrom_nonblock(len, flag = 0, str = nil, exception: true) - __recvfrom_nonblock(len, flag, str, exception) + def recvfrom_nonblock(len, flag = 0, outbuf = nil, exception: true) + __recvfrom_nonblock(len, flag, outbuf, exception) end end -- cgit v1.2.3