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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


ScheduledFuture<V>java.util.concurrent

Java 5.0comparable

This interface extends
Future

and Delayed and adds no methods of its own. A
ScheduledFuture represents a computation and the
future result of that computation just as Future
does, but it adds a getdelay( ) method that
returns the amount of time until the computation begins. See
ScheduledExecutorService.


Figure 16-90. java.util.concurrent.ScheduledFuture<V>

public interface

ScheduledFuture<V> extends DelayedFuture<V> {
}


Returned By


ScheduledExecutorService.{schedule( ),
scheduleAtFixedRate( ),
scheduleWithFixedDelay( )},
ScheduledThreadPoolExecutor.{schedule( ),
scheduleAtFixedRate( ),
scheduleWithFixedDelay( )}


    / 1191