lib/async/notification.rb in async-2.17.0 vs lib/async/notification.rb in async-2.18.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true # Released under the MIT License. # Copyright, 2018-2024, by Samuel Williams. -require_relative 'condition' +require_relative "condition" module Async # A synchronization primitive, which allows fibers to wait until a notification is received. Does not block the task which signals the notification. Waiting tasks are resumed on next iteration of the reactor. # @public Since `stable-v1`. class Notification < Condition