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.
T - The resolved type of the factory's promises.
U - The rejected type of the factory's promises.
V - The type to extend the phases supported by a poll.
Definition of poll state at any given time.