当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby RemoteError类用法及代码示例


本文简要介绍ruby语言中 Ractor::RemoteError类 的用法。

如果在 Ractor 中存在未捕获的异常,则在尝试 Ractor#take 时引发。它的 cause 将包含原始异常,而 ractor 是引发它的原始 ractor。

r = Ractor.new { raise "Something weird happened" }

begin
  r.take
rescue => e
  p e             # => #<Ractor::RemoteError: thrown by remote Ractor.>
  p e.ractor == r # => true
  p e.cause       # => #<RuntimeError: Something weird happened>
end

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 RemoteError类。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。