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

com.kolibrifx.plovercrest.server.streams.StreamInfo Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2017, KolibriFX AS. Licensed under the Apache License, version 2.0.
 */

package com.kolibrifx.plovercrest.server.streams;

public final class StreamInfo {

    private final String name;
    private final boolean materialized;

    public StreamInfo(final String name, final boolean materialized) {
        this.name = name;
        this.materialized = materialized;
    }

    public String getName() {
        return name;
    }

    public boolean isMaterialized() {
        return materialized;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy