graphql-http / common / Sink
common.Sink
A representation of any set of values over any amount of time.
Name | Type |
---|---|
T |
unknown |
▸ complete(): void
The sink has completed. This function "closes" the sink.
void
▸ error(error
): void
An error that has occurred. This function "closes" the sink.
Name | Type |
---|---|
error |
unknown |
void
▸ next(value
): void
Next value arriving.
Name | Type |
---|---|
value |
T |
void