Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ri /
system /
Ractor /
Delete
Unzip
Name
Size
Permission
Date
Action
ClosedError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Error
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
IsolationError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
MovedError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
MovedObject
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
RemoteError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Selector
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
UnsafeError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
%3c%3c-i.ri
246
B
-rw-r--r--
2026-04-07 17:22
%5b%5d%3d-i.ri
298
B
-rw-r--r--
2026-04-07 17:22
%5b%5d-i.ri
293
B
-rw-r--r--
2026-04-07 17:22
cdesc-Ractor.ri
11.5
KB
-rw-r--r--
2026-04-07 17:22
close_incoming-i.ri
768
B
-rw-r--r--
2026-04-07 17:22
close_outgoing-i.ri
760
B
-rw-r--r--
2026-04-07 17:22
count-c.ri
741
B
-rw-r--r--
2026-04-07 17:22
current-c.ri
416
B
-rw-r--r--
2026-04-07 17:22
inspect-i.ri
253
B
-rw-r--r--
2026-04-07 17:22
main-c.ri
277
B
-rw-r--r--
2026-04-07 17:22
make_shareable-c.ri
1.66
KB
-rw-r--r--
2026-04-07 17:22
name-i.ri
294
B
-rw-r--r--
2026-04-07 17:22
new-c.ri
1.47
KB
-rw-r--r--
2026-04-07 17:22
receive-c.ri
1.88
KB
-rw-r--r--
2026-04-07 17:22
receive-i.ri
313
B
-rw-r--r--
2026-04-07 17:22
receive_if-c.ri
2.26
KB
-rw-r--r--
2026-04-07 17:22
receive_if-i.ri
296
B
-rw-r--r--
2026-04-07 17:22
recv-c.ri
238
B
-rw-r--r--
2026-04-07 17:22
recv-i.ri
237
B
-rw-r--r--
2026-04-07 17:22
select-c.ri
2.16
KB
-rw-r--r--
2026-04-07 17:22
send-i.ri
3.01
KB
-rw-r--r--
2026-04-07 17:22
shareable%3f-c.ri
794
B
-rw-r--r--
2026-04-07 17:22
take-i.ri
2.36
KB
-rw-r--r--
2026-04-07 17:22
to_s-i.ri
237
B
-rw-r--r--
2026-04-07 17:22
yield-c.ri
1.33
KB
-rw-r--r--
2026-04-07 17:22
Save
Rename
U:RDoc::AnyMethod[iI" send:ETI"Ractor#send;TF:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"RSend a message to a Ractor's incoming queue to be accepted by Ractor.receive.;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim; [I"r = Ractor.new do ;TI" value = Ractor.receive ;TI" puts "Received #{value}" ;TI" end ;TI"r.send 'message' ;TI"## Prints: "Received: message" ;T:@format0o; ; [I"YThe method is non-blocking (will return immediately even if the ractor is not ready ;TI"to receive anything):;T@o;; [ I"r = Ractor.new {sleep(5)} ;TI"r.send('test') ;TI"puts "Sent successfully" ;TI"/# Prints: "Sent successfully" immediately ;T; 0o; ; [I"hAn attempt to send to a ractor which already finished its execution will raise Ractor::ClosedError.;T@o;; [I"r = Ractor.new {} ;TI"r.take ;TI" p r ;TI"*# "#<Ractor:#6 (irb):23 terminated>" ;TI"r.send('test') ;TI"A# Ractor::ClosedError (The incoming-port is already closed) ;T; 0o; ; [I"\If close_incoming was called on the ractor, the method also raises Ractor::ClosedError.;T@o;; [ I"r = Ractor.new do ;TI" sleep(500) ;TI" receive ;TI" end ;TI"r.close_incoming ;TI"r.send('test') ;TI"A# Ractor::ClosedError (The incoming-port is already closed) ;TI"M# The error is raised immediately, not when the ractor tries to receive ;T; 0o; ; [I"jIf the +obj+ is unshareable, by default it will be copied into the receiving ractor by deep cloning. ;TI"cIf <tt>move: true</tt> is passed, the object is _moved_ into the receiving ractor and becomes ;TI" inaccessible to the sender.;T@o;; [ I"2r = Ractor.new {puts "Received: #{receive}"} ;TI"msg = 'message' ;TI"r.send(msg, move: true) ;TI"r.take ;TI"p msg ;T; 0o; ; [I"This prints:;T@o;; [I"Received: message ;TI"Vin `p': undefined method `inspect' for #<Ractor::MovedObject:0x000055c99b9b69b8> ;T; 0o; ; [I"RAll references to the object and its parts will become invalid to the sender.;T@o;; [I"2r = Ractor.new {puts "Received: #{receive}"} ;TI"s = 'message' ;TI"ary = [s] ;TI"copy = ary.dup ;TI"r.send(ary, move: true) ;TI" ;TI"s.inspect ;TI"G# Ractor::MovedError (can not send any methods to a moved object) ;TI"ary.class ;TI"G# Ractor::MovedError (can not send any methods to a moved object) ;TI"copy.class ;TI"(# => Array, it is different object ;TI"copy[0].inspect ;TI"G# Ractor::MovedError (can not send any methods to a moved object) ;TI"E# ...but its item was still a reference to `s`, which was moved ;T; 0o; ; [I"IIf the object is shareable, <tt>move: true</tt> has no effect on it:;T@o;; [ I"2r = Ractor.new {puts "Received: #{receive}"} ;TI"s = 'message'.freeze ;TI"r.send(s, move: true) ;TI"-s.inspect #=> "message", still available;T; 0: @fileI"ractor.rb;T:0@omit_headings_from_table_of_contents_below0I"+ractor.send(msg, move: false) -> self ;T0[[I"<<;To;; [ ;@i;0I"(obj, move: false);T@iFI"Ractor;TcRDoc::NormalClass00