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
608676f3
Commit
608676f3
authored
Aug 22, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
relaxed signatures of link and monitor relatadapted re member functions of class actor
parent
b5de3fdd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
cppa/detail/scheduled_actor_dummy.hpp
cppa/detail/scheduled_actor_dummy.hpp
+4
-4
src/scheduled_actor_dummy.cpp
src/scheduled_actor_dummy.cpp
+4
-4
No files found.
cppa/detail/scheduled_actor_dummy.hpp
View file @
608676f3
...
@@ -41,10 +41,10 @@ struct scheduled_actor_dummy : abstract_scheduled_actor {
...
@@ -41,10 +41,10 @@ struct scheduled_actor_dummy : abstract_scheduled_actor {
void
dequeue
(
behavior
&
);
void
dequeue
(
behavior
&
);
void
dequeue
(
partial_function
&
);
void
dequeue
(
partial_function
&
);
void
dequeue_response
(
behavior
&
,
message_id_t
);
void
dequeue_response
(
behavior
&
,
message_id_t
);
void
link_to
(
intrusive_ptr
<
actor
>&
);
void
link_to
(
const
intrusive_ptr
<
actor
>&
);
void
unlink_from
(
intrusive_ptr
<
actor
>&
);
void
unlink_from
(
const
intrusive_ptr
<
actor
>&
);
bool
establish_backlink
(
intrusive_ptr
<
actor
>&
);
bool
establish_backlink
(
const
intrusive_ptr
<
actor
>&
);
bool
remove_backlink
(
intrusive_ptr
<
actor
>&
);
bool
remove_backlink
(
const
intrusive_ptr
<
actor
>&
);
void
detach
(
const
attachable
::
token
&
);
void
detach
(
const
attachable
::
token
&
);
bool
attach
(
attachable
*
);
bool
attach
(
attachable
*
);
void
unbecome
();
void
unbecome
();
...
...
src/scheduled_actor_dummy.cpp
View file @
608676f3
...
@@ -36,8 +36,8 @@ void scheduled_actor_dummy::quit(std::uint32_t) { }
...
@@ -36,8 +36,8 @@ void scheduled_actor_dummy::quit(std::uint32_t) { }
void
scheduled_actor_dummy
::
dequeue
(
behavior
&
)
{
}
void
scheduled_actor_dummy
::
dequeue
(
behavior
&
)
{
}
void
scheduled_actor_dummy
::
dequeue
(
partial_function
&
)
{
}
void
scheduled_actor_dummy
::
dequeue
(
partial_function
&
)
{
}
void
scheduled_actor_dummy
::
dequeue_response
(
behavior
&
,
message_id_t
)
{
}
void
scheduled_actor_dummy
::
dequeue_response
(
behavior
&
,
message_id_t
)
{
}
void
scheduled_actor_dummy
::
link_to
(
intrusive_ptr
<
actor
>&
)
{
}
void
scheduled_actor_dummy
::
link_to
(
const
intrusive_ptr
<
actor
>&
)
{
}
void
scheduled_actor_dummy
::
unlink_from
(
intrusive_ptr
<
actor
>&
)
{
}
void
scheduled_actor_dummy
::
unlink_from
(
const
intrusive_ptr
<
actor
>&
)
{
}
void
scheduled_actor_dummy
::
detach
(
const
attachable
::
token
&
)
{
}
void
scheduled_actor_dummy
::
detach
(
const
attachable
::
token
&
)
{
}
bool
scheduled_actor_dummy
::
attach
(
attachable
*
)
{
return
false
;
}
bool
scheduled_actor_dummy
::
attach
(
attachable
*
)
{
return
false
;
}
void
scheduled_actor_dummy
::
unbecome
()
{
}
void
scheduled_actor_dummy
::
unbecome
()
{
}
...
@@ -49,11 +49,11 @@ resume_result scheduled_actor_dummy::resume(util::fiber*) {
...
@@ -49,11 +49,11 @@ resume_result scheduled_actor_dummy::resume(util::fiber*) {
return
resume_result
::
actor_blocked
;
return
resume_result
::
actor_blocked
;
}
}
bool
scheduled_actor_dummy
::
establish_backlink
(
intrusive_ptr
<
actor
>&
)
{
bool
scheduled_actor_dummy
::
establish_backlink
(
const
intrusive_ptr
<
actor
>&
)
{
return
false
;
return
false
;
}
}
bool
scheduled_actor_dummy
::
remove_backlink
(
intrusive_ptr
<
actor
>&
)
{
bool
scheduled_actor_dummy
::
remove_backlink
(
const
intrusive_ptr
<
actor
>&
)
{
return
false
;
return
false
;
}
}
...
...
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