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
d6319e9a
Commit
d6319e9a
authored
Mar 10, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use default for actor_system_config move ctor
parent
df9916ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
71 deletions
+1
-71
libcaf_core/caf/actor_system_config.hpp
libcaf_core/caf/actor_system_config.hpp
+1
-1
libcaf_core/src/actor_system_config.cpp
libcaf_core/src/actor_system_config.cpp
+0
-70
No files found.
libcaf_core/caf/actor_system_config.hpp
View file @
d6319e9a
...
@@ -108,7 +108,7 @@ public:
...
@@ -108,7 +108,7 @@ public:
actor_system_config
();
actor_system_config
();
actor_system_config
(
actor_system_config
&&
);
actor_system_config
(
actor_system_config
&&
)
=
default
;
actor_system_config
(
const
actor_system_config
&
)
=
delete
;
actor_system_config
(
const
actor_system_config
&
)
=
delete
;
actor_system_config
&
operator
=
(
const
actor_system_config
&
)
=
delete
;
actor_system_config
&
operator
=
(
const
actor_system_config
&
)
=
delete
;
...
...
libcaf_core/src/actor_system_config.cpp
View file @
d6319e9a
...
@@ -232,76 +232,6 @@ actor_system_config::actor_system_config()
...
@@ -232,76 +232,6 @@ actor_system_config::actor_system_config()
error_renderers
.
emplace
(
atom
(
"exit"
),
render_exit_reason
);
error_renderers
.
emplace
(
atom
(
"exit"
),
render_exit_reason
);
}
}
actor_system_config
::
actor_system_config
(
actor_system_config
&&
other
)
:
cli_helptext_printed
(
other
.
cli_helptext_printed
),
slave_mode
(
other
.
slave_mode
),
slave_name
(
std
::
move
(
other
.
slave_name
)),
bootstrap_node
(
std
::
move
(
other
.
bootstrap_node
)),
args_remainder
(
std
::
move
(
other
.
args_remainder
)),
scheduler_policy
(
other
.
scheduler_policy
),
scheduler_max_threads
(
other
.
scheduler_max_threads
),
scheduler_max_throughput
(
other
.
scheduler_max_throughput
),
scheduler_enable_profiling
(
std
::
move
(
other
.
scheduler_enable_profiling
)),
scheduler_profiling_ms_resolution
(
other
.
scheduler_profiling_ms_resolution
),
scheduler_profiling_output_file
(
other
.
scheduler_profiling_output_file
),
work_stealing_aggressive_poll_attempts
(
other
.
work_stealing_aggressive_poll_attempts
),
work_stealing_aggressive_steal_interval
(
other
.
work_stealing_aggressive_steal_interval
),
work_stealing_moderate_poll_attempts
(
other
.
work_stealing_moderate_poll_attempts
),
work_stealing_moderate_steal_interval
(
other
.
work_stealing_moderate_steal_interval
),
work_stealing_moderate_sleep_duration_us
(
other
.
work_stealing_moderate_sleep_duration_us
),
work_stealing_relaxed_steal_interval
(
other
.
work_stealing_relaxed_steal_interval
),
work_stealing_relaxed_sleep_duration_us
(
other
.
work_stealing_relaxed_sleep_duration_us
),
logger_file_name
(
std
::
move
(
other
.
logger_file_name
)),
logger_file_format
(
std
::
move
(
other
.
logger_file_format
)),
logger_console
(
other
.
logger_console
),
logger_console_format
(
std
::
move
(
other
.
logger_console_format
)),
logger_component_filter
(
std
::
move
(
other
.
logger_component_filter
)),
logger_verbosity
(
other
.
logger_verbosity
),
logger_inline_output
(
other
.
logger_inline_output
),
logger_filename
(
logger_file_name
),
logger_filter
(
logger_component_filter
),
middleman_network_backend
(
other
.
middleman_network_backend
),
middleman_app_identifier
(
std
::
move
(
other
.
middleman_app_identifier
)),
middleman_enable_automatic_connections
(
other
.
middleman_enable_automatic_connections
),
middleman_max_consecutive_reads
(
other
.
middleman_max_consecutive_reads
),
middleman_heartbeat_interval
(
other
.
middleman_heartbeat_interval
),
middleman_detach_utility_actors
(
other
.
middleman_detach_utility_actors
),
middleman_detach_multiplexer
(
other
.
middleman_detach_multiplexer
),
middleman_enable_tcp
(
other
.
middleman_enable_tcp
),
middleman_enable_udp
(
other
.
middleman_enable_udp
),
middleman_cached_udp_buffers
(
other
.
middleman_cached_udp_buffers
),
middleman_max_pending_msgs
(
other
.
middleman_max_pending_msgs
),
opencl_device_ids
(
std
::
move
(
other
.
opencl_device_ids
)),
openssl_certificate
(
std
::
move
(
other
.
openssl_certificate
)),
openssl_key
(
std
::
move
(
other
.
openssl_key
)),
openssl_passphrase
(
std
::
move
(
other
.
openssl_passphrase
)),
openssl_capath
(
std
::
move
(
other
.
openssl_capath
)),
openssl_cafile
(
std
::
move
(
other
.
openssl_cafile
)),
value_factories_by_name
(
std
::
move
(
other
.
value_factories_by_name
)),
value_factories_by_rtti
(
std
::
move
(
other
.
value_factories_by_rtti
)),
actor_factories
(
std
::
move
(
other
.
actor_factories
)),
module_factories
(
std
::
move
(
other
.
module_factories
)),
hook_factories
(
std
::
move
(
other
.
hook_factories
)),
group_module_factories
(
std
::
move
(
other
.
group_module_factories
)),
thread_hooks_
(
std
::
move
(
other
.
thread_hooks_
)),
type_names_by_rtti
(
std
::
move
(
other
.
type_names_by_rtti
)),
error_renderers
(
std
::
move
(
other
.
error_renderers
)),
named_actor_configs
(
std
::
move
(
other
.
named_actor_configs
)),
slave_mode_fun
(
other
.
slave_mode_fun
),
custom_options_
(
std
::
move
(
other
.
custom_options_
)),
options_
(
std
::
move
(
other
.
options_
))
{
// nop
}
std
::
string
std
::
string
actor_system_config
::
make_help_text
(
const
std
::
vector
<
message
::
cli_arg
>&
xs
)
{
actor_system_config
::
make_help_text
(
const
std
::
vector
<
message
::
cli_arg
>&
xs
)
{
auto
is_no_caf_option
=
[](
const
message
::
cli_arg
&
arg
)
{
auto
is_no_caf_option
=
[](
const
message
::
cli_arg
&
arg
)
{
...
...
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