BroadcastCloseSession forwards session id to underlying batchers
(sessionUuid string)
| 239 | |
| 240 | // BroadcastCloseSession forwards session id to underlying batchers |
| 241 | func (s *Sync) BroadcastCloseSession(sessionUuid string) { |
| 242 | for _, b := range s.eventsBatchers { |
| 243 | b.ForceCloseSession(sessionUuid) |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | func (s *Sync) Capture(ctx context.Context, targetFolder string) error { |
| 248 |
nothing calls this directly
no test coverage detected