التابع Thread.report_on_exception=
في روبي
يضبط التابع report_on_exception
عند استدعائه بالشكل report_on_exception= boolean
حالة "التبليغ عند الاستثناء" (report on exception). عندما تكون القيمة المنطقية هي true
، سترث كل المهام الفرعية التي تم إنشاؤها لاحقا الشرط (condition) وتبعث رسالة إلى المجرى $stderr
إذا أدى استثناء ما إلى إنهاء مهمة فرعية.
يوجد أيضًا تابع نسخة (instance level method) لتعيين هذا الخيار لمهمة فرعية معينة؛ راجع report_on_exception=
.
البنية العامة
report_on_exception= boolean→ true or false
القيمة المعادة
تعاد القيمة المنطقية boolean
التي تمثل الحالة الجديدة لحالة "التبليغ عند الاستثناء".
أمثلة
مثال على استخدام التابع report_on_exception=
:
Thread.report_on_exception = true
t1 = Thread.new do
puts "In new thread"
raise "Exception from thread"
end
sleep(1)
puts "In the main thread"
هذا سوف ينتج:
In new thread
#<Thread:...prog.rb:2> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
prog.rb:4:in `block in <main>': Exception from thread (RuntimeError)
In the main thread
انظر أيضًا
- التابع
report_on_exception
: يعيد حالة "التبليغ عند الاستثناء" (report on exception).