Questions
- How can we start a timer?
A. By calling Grain.Subscribe
B. By creating a new task
C. By calling Grain.RegisterTimer
D. None of the above
Answer – C
- How can we cancel a timer?
A. By calling Grain.CancelTimer
B. By disposing of it
C. By calling Grain.UnregisterTimer
D. None of the above
Answer – B
- How can we start a reminder?
A. By calling Grain.RegisterOrUpdateReminder
B. By calling Grain.GetReminder
C. By calling Grain.StartReminder
D. None of the above
Answer – A
- When can I use a timer?
A. When there is no significant impact on functionality when the timer stops due to grain deactivation or the cluster restarts
B. For performing frequent tasks in seconds or minutes
C. Both A and B
D. None of the above
Answer – C
- When can I use reminders?
A. To perform infrequent tasks in minutes, hours, or days
...