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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



An
exception
of this type is thrown by a thread blocked in an I/O operation on a
channel when another thread calls its interrupt( )
method. This exception is a subclass of
AsynchronousCloseException and the channel will be
closed as a side-effect of the thread interruption.


Figure 13-18. java.nio.channels.ClosedByInterruptException

public class 

ClosedByInterruptException extends AsynchronousCloseException {
// Public Constructors
public

ClosedByInterruptException ( );
}



/ 1191