UploadDataProvider
public
abstract
class
UploadDataProvider
extends Object
implements
Closeable
Abstract class allowing the embedder to provide an upload body to UrlRequest
. It supports
both non-chunked (size known in advanced) and chunked (size not known in advance) uploads. Be
aware that not all servers support chunked uploads.
An upload is either always chunked, across multiple uploads if the data
ends up being sent more than once, or never chunked.
Summary
Public methods |
void
|
close()
Called when this UploadDataProvider is no longer needed by a request, so that resources (like
a file) can be explicitly released.
|
abstract
long
|
getLength()
If this is a non-chunked upload, returns the length of the upload.
|
abstract
void
|
read(UploadDataSink uploadDataSink, ByteBuffer byteBuffer)
Reads upload data into byteBuffer .
|
abstract
void
|
rewind(UploadDataSink uploadDataSink)
Rewinds upload data.
|
Inherited methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long timeoutMillis, int nanos)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait(long timeoutMillis)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted.
|
|
From interface
java.io.Closeable
abstract
void
|
close()
Closes this stream and releases any system resources associated
with it.
|
|
From interface
java.lang.AutoCloseable
abstract
void
|
close()
Closes this resource, relinquishing any underlying resources.
|
|
Public constructors
UploadDataProvider
public UploadDataProvider ()
Public methods
close
public void close ()
Called when this UploadDataProvider is no longer needed by a request, so that resources (like
a file) can be explicitly released.
Throws |
IOException |
if any IOException occurred during the process. This will cause the
request
to fail if it is not yet complete; otherwise it will be logged. |
getLength
public abstract long getLength ()
If this is a non-chunked upload, returns the length of the upload. Must always return -1 if
this is a chunked upload.
Returns |
long |
the length of the upload for non-chunked uploads, -1 otherwise. |
Throws |
IOException |
if any IOException occurred during the process. |
read
public abstract void read (UploadDataSink uploadDataSink,
ByteBuffer byteBuffer)
Reads upload data into byteBuffer
. Upon completion, the buffer's position is updated
to the end of the bytes that were read. The buffer's limit is not changed. Each call of this
method must be followed be a single call, either synchronous or asynchronous, to uploadDataSink
: UploadDataSink.onReadSucceeded
on success or UploadDataSink.onReadError(Exception)
on failure. Neither read nor rewind will be called until one of
those methods or the other is called. Even if the associated UrlRequest
is canceled,
one or the other must still be called before resources can be safely freed. Throwing an
exception will also result in resources being freed and the request being errored out.
Parameters |
uploadDataSink |
UploadDataSink : The object to notify when the read has completed, successfully or
otherwise.
This value cannot be null . |
byteBuffer |
ByteBuffer : The buffer to copy the read bytes into. Do not change byteBuffer's limit.
This value cannot be null . |
rewind
public abstract void rewind (UploadDataSink uploadDataSink)
Rewinds upload data. Each call must be followed be a single call, either synchronous or
asynchronous, to uploadDataSink
: UploadDataSink.onRewindSucceeded
on success
or
UploadDataSink.onRewindError
on failure. Neither read nor rewind will be called until
one of those methods or the other is called. Even if the associated UrlRequest
is
canceled, one or the other must still be called before resources can be safely freed.
Throwing an exception will also result in resources being freed and the request being errored
out.
If rewinding is not supported, this should call
UploadDataSink.onRewindError
. Note that rewinding is required to follow redirects
that preserve the upload body, and for retrying when the server times out stale sockets.
Parameters |
uploadDataSink |
UploadDataSink : The object to notify when the rewind operation has completed,
successfully or otherwise.
This value cannot be null . |