8000 feat(): add rxScheduleTask function by Karnaukhov-kh · Pull Request #1633 · rx-angular/rx-angular · GitHub
[go: up one dir, main page]

Skip to content

feat(): add rxScheduleTask function #1633

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update libs/cdk/render-strategies/src/lib/rx-schedule-task.ts
Co-authored-by: Enea Jahollari <jahollarienea14@gmail.com>
  • Loading branch information
Karnaukhov-kh and eneajaho authored Oct 30, 2023
commit 31e8c6ca02f73cc4c76a5c8c9cd0d0393e79c7b0
2 changes: 1 addition & 1 deletion libs/cdk/render-strategies/src/lib/rx-schedule-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const defaultStrategy: keyof StrategiesPriorityRecord = 'normal';
* It is useful for tasks that can be done asynchronously.
*
* ```ts
* const task = rxScheduleTask(() => localStorage.setItem(state, JSON.stringify(state));
* const task = rxScheduleTask(() => localStorage.setItem(state, JSON.stringify(state)));
* ```
*/
export const rxScheduleTask = (
Expand Down
0