Package elemental2.dom
Interface ReadableStreamDefaultController<VALUE>
-
@JsType(isNative=true, namespace="<global>") public interface ReadableStreamDefaultController<VALUE>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
void
enqueue(VALUE chunk)
void
error(java.lang.Object err)
int
getDesiredSize()
void
setDesiredSize(int desiredSize)
-
-
-
Method Detail
-
close
void close()
-
enqueue
void enqueue(VALUE chunk)
-
error
void error(java.lang.Object err)
-
getDesiredSize
@JsProperty int getDesiredSize()
-
setDesiredSize
@JsProperty void setDesiredSize(int desiredSize)
-
-