elsa-workflows / elsa-workflows/elsa-core
ScheduleAt missing from CreateBookmarkArgs
- Dominant language
- C#
- Stars
- 7.9k
- Forks
- 1.5k
- Avg merge
- 15h 22m
- Merged PRs (30d)
- 114
Description
## Description
In the currently available documentation it's stated the following
4. Scheduled Bookmarks and Timers
For time-based operations, use Elsa's built-in timer activities or scheduled bookmarks:
// Schedule a bookmark to execute at a specific time
var scheduledBookmark = context.CreateBookmark(new CreateBookmarkArgs
{
BookmarkName = "ScheduledTask",
Callback = OnScheduledTimeAsync,
ScheduledAt = DateTime.UtcNow.AddHours(24)
});
However in Elsa Workflows 3.6-rc.2 (at least) ScheduleAt property is missing from CreateBookmarkArgs class.
Considering the Api has changed since the documentation was written what's the currently recommended way in a custom activity to schedule a bookmark to start at a specific date and time?
Contributor guide
Assessment
This issue has not been assessed yet.