An Async Iterable time series stream. Each entry will be a TimeSeriesResult that may or may not contain a TimeSeriesMessage.
setCallbackHandler(handler?: ITimeSeriesHandler): voidSet a callback handler.
handler?: ITimeSeriesHandlerthe callback handlervoiddelete(): voidDelete the handle. This will close the stream and dispose of the resources used by it.
voidisDeleted(): booleanHas the handle been deleted?
booleannext(): Promise<IteratorResult<TimeSeriesResult, any>>Advance iterator to next partial response.
Promise<IteratorResult<TimeSeriesResult, any>>[asyncIterator](): AsyncIterableIterator<TimeSeriesResult>A stream handle object that will iterate through Stream Messages. If a StatusCode is returned then this will indicate the cause of an error that may be recoverable. If this stream recovers the api will handle the recovery automatically.
AsyncIterableIterator<TimeSeriesResult>