interface Regular extends File |
The interface for a regular file.
Obtains a portion of the compressed file.
Obtain the message digest for a portion of the compressed file, allowing a client to determine whether a partially downloaded file is still valid.
Obtain the compressed size of the file.
::Ice::ByteSeq getBZ2(int pos, int num) throws FileAccessException, BusyException; |
Obtains a portion of the compressed file.
The starting position in bytes. The position must not exceed the size of the file.
The maximum number of bytes to return. This number must not exceed one megabyte.
The requested bytes. The returned sequence may contain fewer bytes than requested if getBZ2 exceeds the remaining bytes in the file.
Raised if the file cannot be accessed.
Raised if the server is busy.
::Ice::ByteSeq getBZ2MD5(int size) throws FileAccessException, BusyException; |
Obtain the message digest for a portion of the compressed file, allowing a client to determine whether a partially downloaded file is still valid.
Raised if the file cannot be accessed.
Raised if the server is busy.
int getBZ2Size() throws FileAccessException, BusyException; |
Obtain the compressed size of the file. IcePatch compresses files using the BZIP2 algorithm.
Raised if the file cannot be accessed.
Raised if the server is busy.
<<< Previous | Home | Next >>> |
IcePatch::FileDesc | Up | IcePatch::RegularDesc |