We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://www.boost.org/doc/libs/1_61_0/doc/html/signals2/examples.html#signals2.examples.misc
blocking slots, ordering slots, combiners
The text was updated successfully, but these errors were encountered:
blocking slots is now implemented
Sorry, something went wrong.
Any plans to support multiple signals in the same receiver? Pseudo code:
signal sig1<string> = "initial_string"; signal sig2<int> = 22; // the culprit - it depends at the same time on both sig1 and sig2 print( "sig1:", sig1, "sig2", (string)sig2 ); sig1( "abc" ); sig2( 33 );
(do not confuse with combiners)
Or do we need to manually "curry" it e.g. using lambdas or other "caching" means?
No branches or pull requests
https://www.boost.org/doc/libs/1_61_0/doc/html/signals2/examples.html#signals2.examples.misc
blocking slots, ordering slots, combiners
The text was updated successfully, but these errors were encountered: