Step returns the step the flow is currently in.
()
| 110 | |
| 111 | // Step returns the step the flow is currently in. |
| 112 | func (f *FlowTracker) Step() Step { |
| 113 | if f == nil { |
| 114 | return "" |
| 115 | } |
| 116 | return f.step |
| 117 | } |
| 118 | |
| 119 | // DurationMS returns the time elapsed since the flow started, in milliseconds. |
| 120 | func (f *FlowTracker) DurationMS() int64 { |
no outgoing calls