Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
0694f7d1
Commit
0694f7d1
authored
Jan 28, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation nitpicks
parent
1a8b3841
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
libcaf_core/caf/scheduled_actor.hpp
libcaf_core/caf/scheduled_actor.hpp
+6
-3
No files found.
libcaf_core/caf/scheduled_actor.hpp
View file @
0694f7d1
...
...
@@ -647,8 +647,9 @@ public:
return
run_scheduled
(
time_point_cast
<
duration_t
>
(
when
),
make_action
(
what
));
}
/// Runs `what` asynchronously at some point after `when`, iff this actor is
/// alive.
/// Runs `what` asynchronously at some point after `when` if the actor still
/// exists. The callback is going to hold a weak reference to the actor, i.e.,
/// does not prevent the actor to become unreachable.
/// @param when The local time until the actor waits before invoking the
/// action. Due to scheduling delays, there will always be some
/// additional wait time. Passing the current time or a past time
...
...
@@ -685,7 +686,9 @@ public:
return
run_delayed
(
duration_cast
<
timespan
>
(
delay
),
make_action
(
what
));
}
/// Runs `what` asynchronously after the `delay`, iff this actor is alive.
/// Runs `what` asynchronously after the `delay` if the actor still exists.
/// The callback is going to hold a weak reference to the actor, i.e., does
/// not prevent the actor to become unreachable.
/// @param delay Minimum amount of time that actor waits before invoking the
/// action. Due to scheduling delays, there will always be some
/// additional wait time.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment