Classes summary
AbstractTransfer |
Contains abstract functionality for transfer objects. |
ConcurrentTransfer |
A transfer type which executes in a concurrent fashion, i.e. with multiple
workers uploading at once. Each worker is charged with uploading a particular
chunk of data. The entity body is fragmented into n pieces - calculated by
dividing the total size by the individual part size. |
ConsecutiveTransfer |
A transfer type which executes consecutively - i.e. it will upload an entire
EntityBody and then move on to the next in a linear fashion. There is no
concurrency here. |
TransferBuilder |
Factory which creates Transfer objects, either ConcurrentTransfer or
ConsecutiveTransfer. |
TransferPart |
Represents an individual part of the EntityBody being uploaded. |
TransferState |
Represents the current state of the Transfer. |