Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added file.progress property, along with documentation #1140

Merged
merged 1 commit into from Jun 25, 2017
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

@@ -469,6 +469,10 @@ File length (in bytes), as specified by the torrent. *Example: 12345*

Total *verified* bytes received from peers, for this file.

## `file.progress`

File download progress, from 0 to 1.

## `file.select()`

Selects the file to be downloaded, but at a lower priority than files with streams.
@@ -56,6 +56,10 @@ Object.defineProperty(File.prototype, 'downloaded', {
}
})

Object.defineProperty(File.prototype, 'progress', {
get: function () { return this.length ? this.downloaded / this.length : 0 }
})

File.prototype.select = function (priority) {
if (this.length === 0) return
this._torrent.select(this._startPiece, this._endPiece, priority)
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.