提交 0d7bd203 编写于 作者: A Andrew White

Remove deprecated class ActiveSupport::Concurrency::Latch

上级 0189f4db
* Remove deprecated class `ActiveSupport::Concurrency::Latch`
*Andrew White*
* Remove deprecated separator argument from `parameterize`
*Andrew White*
......
require "concurrent/atomic/count_down_latch"
module ActiveSupport
module Concurrency
class Latch
def initialize(count = 1)
if count == 1
ActiveSupport::Deprecation.warn("ActiveSupport::Concurrency::Latch is deprecated. Please use Concurrent::Event instead.")
else
ActiveSupport::Deprecation.warn("ActiveSupport::Concurrency::Latch is deprecated. Please use Concurrent::CountDownLatch instead.")
end
@inner = Concurrent::CountDownLatch.new(count)
end
def release
@inner.count_down
end
def await
@inner.wait(nil)
end
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册