FairMQ icon indicating copy to clipboard operation
FairMQ copied to clipboard

Provide state "traits"

Open dennisklein opened this issue 3 years ago • 0 comments

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)) {
    // ...
  }
});

dennisklein avatar Aug 26 '22 12:08 dennisklein