Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


BrokenBarrierExceptionjava.util.concurrent

Java 5.0serializable checked

An
exception
of this type is thrown when a thread calls
CyclicBarrier.await( ) on a broken barrier, or
when the barrier is broken while a thread is waiting. A
CyclicBarrier enters a broken state when one of
the waiting threads is interrupted or times out.


Figure 16-73. java.util.concurrent.BrokenBarrierException

public class

BrokenBarrierException extends Exception {
// Public Constructors
public

BrokenBarrierException ( );
public

BrokenBarrierException (String

message );
}


Thrown By


CyclicBarrier.await( )


    / 1191