Package elemental2.dom
Interface ReadableStreamSource<VALUE>
-
@JsType(isNative=true, namespace="<global>") public interface ReadableStreamSource<VALUE>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ReadableStreamSource.CancelFn
static interface
ReadableStreamSource.PullFn<VALUE>
static interface
ReadableStreamSource.StartFn<VALUE>
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static ReadableStreamSource
create()
int
getAutoAllocateChunkSize()
ReadableStreamSource.CancelFn
getCancel()
ReadableStreamSource.PullFn<VALUE>
getPull()
ReadableStreamSource.StartFn<VALUE>
getStart()
java.lang.String
getType()
void
setAutoAllocateChunkSize(int autoAllocateChunkSize)
void
setCancel(ReadableStreamSource.CancelFn cancel)
void
setPull(ReadableStreamSource.PullFn<? super VALUE> pull)
void
setStart(ReadableStreamSource.StartFn<? super VALUE> start)
void
setType(java.lang.String type)
-
-
-
Method Detail
-
create
@JsOverlay static ReadableStreamSource create()
-
getAutoAllocateChunkSize
@JsProperty int getAutoAllocateChunkSize()
-
getCancel
@JsProperty ReadableStreamSource.CancelFn getCancel()
-
getPull
@JsProperty ReadableStreamSource.PullFn<VALUE> getPull()
-
getStart
@JsProperty ReadableStreamSource.StartFn<VALUE> getStart()
-
getType
@JsProperty java.lang.String getType()
-
setAutoAllocateChunkSize
@JsProperty void setAutoAllocateChunkSize(int autoAllocateChunkSize)
-
setCancel
@JsProperty void setCancel(ReadableStreamSource.CancelFn cancel)
-
setPull
@JsProperty void setPull(ReadableStreamSource.PullFn<? super VALUE> pull)
-
setStart
@JsProperty void setStart(ReadableStreamSource.StartFn<? super VALUE> start)
-
setType
@JsProperty void setType(java.lang.String type)
-
-