Skip to content

Commit

Permalink
Changing channel actions to be direct
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Heller committed Sep 20, 2017
1 parent 0bc6e4e commit 9b76d1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hpx/lcos/server/channel.hpp
Expand Up @@ -96,13 +96,13 @@ namespace hpx { namespace lcos { namespace server
{
return channel_.get(generation);
}
HPX_DEFINE_COMPONENT_ACTION(channel, get_generation);
HPX_DEFINE_COMPONENT_DIRECT_ACTION(channel, get_generation);

void set_generation(RemoteType && value, std::size_t generation)
{
channel_.set(std::move(value), generation);
}
HPX_DEFINE_COMPONENT_ACTION(channel, set_generation);
HPX_DEFINE_COMPONENT_DIRECT_ACTION(channel, set_generation);

void close(bool force_delete_entries)
{
Expand Down

0 comments on commit 9b76d1d

Please sign in to comment.