FairMQ
FairMQ copied to clipboard
Provide state "traits"
States with auto transitions are sometimes not interesting to the user, it should be possible to filter them (essentially without having to know explicitly which states have an auto transition):
SubscribeToStateChange([](auto state){
if (HasManualTransition(state)) {
// ...
}
});