def is_invocable()

in message_flow/sagas/orchestration_simple_dsl/abstract_participant_invocation.py [0:0]


    def is_invocable(self, data: Data) -> bool:
        if self._invocable_predicate is not None:
            return self._invocable_predicate(data)

        return True