All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alexeylapin.m3u8.model.PartialSegmentInformation Maven / Gradle / Ivy

The newest version!
package com.github.alexeylapin.m3u8.model;

import org.immutables.value.Value;

@Value.Immutable
public interface PartialSegmentInformation {

    double partTargetDuration();

    static Builder builder() {
        return new Builder();
    }

    class Builder extends PartialSegmentInformationBuilder {

    }

    static PartialSegmentInformation of(double partTargetDuration) {
        return builder().partTargetDuration(partTargetDuration).build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy