Skip to content
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

Rtt can be applied on non-copy objects without r-value reference #163

Open
SergeiNA opened this issue Oct 2, 2024 · 0 comments
Open

Rtt can be applied on non-copy objects without r-value reference #163

SergeiNA opened this issue Oct 2, 2024 · 0 comments

Comments

@SergeiNA
Copy link
Collaborator

SergeiNA commented Oct 2, 2024

Now to use non copy in send function we must use &&(r-value ref) in accepting function signature:

 void dummy_supervisor::check(std::unique_ptr<dummy_data>&& data, ...)
 ...
 auto ptr_data = std::unique_ptr<dummy_data>(new dummy_data);
 actor_zeta::send(supervisor.get(), actor_zeta::address_t::empty_address(), command_t::check, std::move(ptr_data), ...);

Root cause - how rtt deduce types for move-only objects.
see this test.
Need to figure out how we can use more simple signature without && like
void dummy_supervisor::check(std::unique_ptr<dummy_data> data, ...)

@SergeiNA SergeiNA changed the title Rtt can apply on non-copy objects without r-value reference Rtt can be applied on non-copy objects without r-value reference Oct 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant