类 Ractor::MovedError
当尝试访问通过 Ractor#send
或 Ractor.yield
移动的对象时引发。
r = Ractor.new { sleep } ary = [1, 2, 3] r.send(ary, move: true) ary.inspect # Ractor::MovedError (can not send any methods to a moved object)
当尝试访问通过 Ractor#send
或 Ractor.yield
移动的对象时引发。
r = Ractor.new { sleep } ary = [1, 2, 3] r.send(ary, move: true) ary.inspect # Ractor::MovedError (can not send any methods to a moved object)