الفرق بين المراجعتين لصفحة: «Ruby/Thread/report on exception-i»
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: تابع النسخة <code>report_on_exception</code> الخاص بالصنف <code>Thread</code> في روبي}}</noinclude> تصن...' |
لا ملخص تعديل |
||
سطر 3: | سطر 3: | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby Thread]] | [[تصنيف: Ruby Thread]] | ||
يعيد التابع <code>report_on_exception</code> حالة تقرير الاستثناء "report on exception" | يعيد التابع <code>report_on_exception</code> حالة تقرير الاستثناء "report on exception" للشرط المحلي ( thread-local condition ) [[Ruby/Thread|للمهمة الفرعية]]. | ||
القيمة الافتراضية عند إنشاء [[Ruby/Thread|المهمة الفرعية]] هي قيمة الراية العامة <code>[[Ruby/Thread/report on exception|report_on_exception]]</code>. | |||
انظر أيضا صفحة <code>[[Ruby/Thread/report on exception-3D-i|report_on_exception=]]</code>. | |||
انظر أيضا صفحة <code>[[Ruby/Thread/ | |||
يوجد أيضًا تابع | يوجد أيضًا تابع صنف (class level method) لتعيين هذا الخيار لكل [[Ruby/Thread|المهام الفرعية]]، راجع صفحة <code>[[Ruby/Thread/report on exception|report_on_exception]]</code>. | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">report_on_exception→ true or false</syntaxhighlight> | <syntaxhighlight lang="ruby">report_on_exception→ true or false</syntaxhighlight> | ||
==القيمة المُعادة== | ==القيمة المُعادة== | ||
يعيد التابع <code>report_on_exception</code> قيمة منطقية | يعيد التابع <code>report_on_exception</code> قيمة منطقية. | ||
==انظر أيضا== | ==انظر أيضا== | ||
* التابع <code>[[Ruby/Thread/raise|raise]]</code>: يطلق التابع <code>raise</code> استثناء من [[Ruby/Thread|مهمة فرعية]] معينة. لا يلزم أن يكون الُمستدعي (caller) من <code>thr</code>. انظر صفحة <code>[[Ruby/Kernel/raise|Kernel#raise]]</code> لمزيد من المعلومات. | *التابع <code>[[Ruby/Thread/raise|raise]]</code>: يطلق التابع <code>raise</code> استثناء من [[Ruby/Thread|مهمة فرعية]] معينة. لا يلزم أن يكون الُمستدعي (caller) من <code>thr</code>. انظر صفحة <code>[[Ruby/Kernel/raise|Kernel#raise]]</code> لمزيد من المعلومات. | ||
* التابع <code>[[Ruby/Thread/ | *التابع <code>[[Ruby/Thread/report on exception-3D-i|report_on_exception=]]</code>: يطبع التابع <code>report_on_exception=</code> رسالة في المخرج stderr$ إذا أنهى استثناء ما [[Ruby/Thread|المهمة الفرعية]]. | ||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/Thread.html#method-i-report_on_exception قسم التابع report_on_exception في الصنف Thread في توثيق روبي الرسمي.] | *[http://ruby-doc.org/core-2.5.1/Thread.html#method-i-report_on_exception قسم التابع report_on_exception في الصنف Thread في توثيق روبي الرسمي.] |
مراجعة 23:24، 5 نوفمبر 2018
يعيد التابع report_on_exception
حالة تقرير الاستثناء "report on exception" للشرط المحلي ( thread-local condition ) للمهمة الفرعية.
القيمة الافتراضية عند إنشاء المهمة الفرعية هي قيمة الراية العامة report_on_exception
.
انظر أيضا صفحة report_on_exception=
.
يوجد أيضًا تابع صنف (class level method) لتعيين هذا الخيار لكل المهام الفرعية، راجع صفحة report_on_exception
.
البنية العامة
report_on_exception→ true or false
القيمة المُعادة
يعيد التابع report_on_exception
قيمة منطقية.
انظر أيضا
- التابع
raise
: يطلق التابعraise
استثناء من مهمة فرعية معينة. لا يلزم أن يكون الُمستدعي (caller) منthr
. انظر صفحةKernel#raise
لمزيد من المعلومات. - التابع
report_on_exception=
: يطبع التابعreport_on_exception=
رسالة في المخرج stderr$ إذا أنهى استثناء ما المهمة الفرعية.