NewTicker returns a new Ticker containing a channel that will send
the current time on the channel according to the crontab schedule.
The crontab schedule is specified by the spec argument and will be
parsed using the standard specification.
Stop the ticker to release associated resources.
NewTickerWithParser returns a new Ticker containing a channel that will send
the current time on the channel accordint to the crontab schedule.
The crontab schedule is specified by the spec argument and will be
parsed using the provided parser.
Stop the ticker to release associated resources.
Stop turns off a ticker. After Stop, no more ticks will be sent.
Stop does not close the channel, to prevent a concurrent goroutine
reading from the channel from seeing an erroneous "tick".