class Ractor::MovedError

Ausgelöst bei dem Versuch, auf ein Objekt zuzugreifen, das in Ractor#send oder Ractor::Port#send verschoben wurde.

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)