(event agent.StreamEvent)
| 495 | } |
| 496 | |
| 497 | func (r *UiRuntime) Flush(force bool) { |
| 498 | if !r.Dirty && !force { |
| 499 | return |
| 500 | } |
| 501 | r.refreshContextWindowFrame() |
| 502 | if r.UI != nil { |
| 503 | r.UI.Update(r.Frame) |
| 504 | } |
| 505 | r.Dirty = false |
| 506 | r.LastFlushAt = time.Now() |
| 507 | } |
no test coverage detected