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

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

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

import org.immutables.value.Value;

import java.util.Optional;

@Value.Immutable
public interface ServerControl {
    Optional canSkipUntil();

    Optional canSkipDateRanges();

    Optional holdBack();

    Optional partHoldBack();

    @Value.Default
    default boolean canBlockReload() {
        return false;
    }

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

    class Builder extends ServerControlBuilder {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy