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

js.web.streams.QueuingStrategy Maven / Gradle / Ivy

package js.web.streams;

import js.lang.Any;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface QueuingStrategy {
    @JSProperty
    int getHighWaterMark();

    @JSProperty
    void setHighWaterMark(int highWaterMark);

    @JSProperty
    @Nullable
    QueuingStrategySizeCallback getSize();

    @JSProperty
    void setSize(QueuingStrategySizeCallback size);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy