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

Missing features #6

Open
TheWisp opened this issue Jan 17, 2020 · 2 comments
Open

Missing features #6

TheWisp opened this issue Jan 17, 2020 · 2 comments

Comments

@TheWisp
Copy link
Owner

TheWisp commented Jan 17, 2020

https://www.boost.org/doc/libs/1_61_0/doc/html/signals2/examples.html#signals2.examples.misc

blocking slots, ordering slots, combiners

@TheWisp
Copy link
Owner Author

TheWisp commented Jan 23, 2020

blocking slots is now implemented

@dumblob
Copy link

dumblob commented May 31, 2021

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants