Class: shaka.media.StallDetector

Constructor

new StallDetector(implementation, stallThresholdSeconds)

Parameters:
Name Type Description
implementation shaka.media.StallDetector.Implementation
stallThresholdSeconds number
Implements:
Source:

Classes

MediaElementImplementation

Interfaces

Implementation

Members

(private) didJump_ :boolean

Type:
  • boolean
Source:

(private) lastUpdateSeconds_ :number

Type:
  • number
Source:

(private) stallThresholdSeconds_ :number

The amount of time in seconds that we must have the same value of |value_| before we declare it as a stall.
Type:
  • number
Source:

(private) value_ :number

Type:
  • number
Source:

(private) wasMakingProgress_ :boolean

Type:
  • boolean
Source:

Methods

onStall(doThis)

Set the callback that should be called when a stall is detected. Calling this will override any previous calls to |onStall|.
Parameters:
Name Type Description
doThis function(number, number)
Source:

(private) onStall_()

Source:

poll() → {boolean}

Have the detector update itself and fire the "on stall" callback if a stall was detected.
Source:
Returns:
True if action was taken.
Type
boolean

(export) release()

Request that this object release all internal references.
Implements:
Source: