Readonly interval: numberThe number of milliseconds until the current tick resolves.
Readonly payload: T | U | nullThe payload of the last poll resolution or rejection.
The payload is null unless the phase is 'reconnected, 'resolved',
or 'rejected'. Its type is T for resolutions and U for rejections.
Readonly phase: Phase<V>The current poll phase.
Readonly timestamp: numberThe timestamp for when this tick was scheduled.
Generated using TypeDoc
Definition of poll state at any given time.
Typeparam
T - The resolved type of the factory's promises.
Typeparam
U - The rejected type of the factory's promises.
Typeparam
V - The type to extend the phases supported by a poll.