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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


RejectedExecutionExceptionjava.util.concurrent

Java 5.0serializable unchecked

An
exception
of this type is thrown by an Executor when it
cannot accept a task for execution. When a
ThreadPoolExecutor cannot accept a task, it
attempts to invoke a RejectedExecutionHandler.
THReadPoolExecutor defines several nested
implementations of that handler interface that can handle the
rejected task without throwing an exception of this type.


Figure 16-88. java.util.concurrent.RejectedExecutionException

public class

RejectedExecutionException extends RuntimeException {
// Public Constructors
public

RejectedExecutionException ( );
public

RejectedExecutionException (Throwable

cause );
public

RejectedExecutionException (String

message );
public

RejectedExecutionException (String

message , Throwable

cause );
}



    / 1191