PlaybackSpeedChangedEvent

@objcMembers
@objc(BMPPlaybackSpeedChangedEvent)
public class PlaybackSpeedChangedEvent : PlayerEvent

See PlayerListener for more information on this event.

  • Declaration

    Swift

    override public var name: String { get }
  • The playback speed before the change happened.

    Declaration

    Swift

    public let from: Float
  • to

    The playback speed after the change happened.

    Declaration

    Swift

    public let to: Float
  • Declaration

    Swift

    public init(
        from: Float,
        to: Float
    )