From jQuery JavaScript Library
« Back to UI/Uploader
ProgressObject( options )
Contains progress information about a file. This object is passed with some of the callback functions.
Arguments:| options | Options | |
|---|
| A set of key/value pairs that provide information about the current file progress. |
Options:| Name | Type |
| cbDone | float | |
|---|
| Current File: Bytes allready processed. |
| cbTotal | float | |
|---|
| Current File: Filesize. |
| cbRemain | float | |
|---|
| Current File: Bytes remaining. |
| ctStart | integer | |
|---|
| Current File: Starttime (Unix Timestamp). |
| ctBusy | integer | |
|---|
| Current File: Milliseconds allready processing. |
| cbSpeed | float | |
|---|
| Current File: Calculated speed. |
| ctRemain | integer | |
|---|
| Current File: Calculated Seconds remaining. |
| cProgress | integer | |
|---|
| Current File: Current progress (0-100). |
| qIndex | integer | |
|---|
| Current Queue: Current index. |
| qCount | integer | |
|---|
| Current Queue: length of queue (ammount of items). |
| qbDone | Float | |
|---|
| Current Queue: Bytes allready processed. |
| qbTotal | Float | |
|---|
| Current Queue: Size of all files in the current queue. |
| qbRemain | Float | |
|---|
| Current Queue: Bytes remaining. |
| qtStart | integer | |
|---|
| Current Queue: Starttime. |
| qtBusy | integer | |
|---|
| Current Queue: Milliseconds allready processing. |
| qbSpeed | Float | |
|---|
| Current Queue: speed. |
| qtRemain | integer | |
|---|
| Current Seconds remaining. |
| qProgress | integer | |
|---|
| Current queue: Current progress (0-100). |