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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


CacheRequestjava.net

Java 5.0


When
a URLStreamHandler reads a network resource, it
should call the put( ) method of the currently
installed ResponseCache, if there is one. If the
cache wants to save a local copy of the resource, it will return a
CacheRequest object to the
URLStreamHandler. The handler should then write
the resource to the OutputStream returned by the
getBody( )
method.

See also CacheResponse. This class is used by the
implementors of URLStreamHandler, not by casual
users of the java.net package.

public abstract class

CacheRequest {
// Public Constructors
public

CacheRequest ( );
// Public Instance Methods
public abstract void

abort ( );
public abstract java.io.OutputStream

getBody ( ) throws java.io.IOException;
}


Returned By


ResponseCache.put( )


    / 1191