Allocate a flow Id.
(self)
| 414 | return pid |
| 415 | |
| 416 | def _alloc_flow_id(self): |
| 417 | """Allocate a flow Id.""" |
| 418 | flow_id = self._next_flow_id |
| 419 | self._next_flow_id += 1 |
| 420 | return flow_id |
| 421 | |
| 422 | def _parse_op_label(self, label): |
| 423 | """Parses the fields in a node timeline label.""" |
no outgoing calls
no test coverage detected