Represents GridFTP restart marker, which contains unordered set
of byte ranges representing transferred data.
The ranges are preserved exactly as received
from the server, which may not be very useful.
For additional processing on byte ranges,
use ByteRangeList.
Typical usage:
list = new ByteRangeList();
marker = new GridFTPRestartMarker(reply.getMessage());
list.merge(marker.getVector());
Returns Vector representation of this object. Its elements
are be ByteRange objects. They are in the order exactly as received
in the FTP reply; no additional processing has been done on them.
To order and merge them, use ByteRangeList.