(&self)
| 178 | self.events.push_back(event); |
| 179 | } |
| 180 | |
| 181 | pub fn seal_frame(&mut self) -> InputFrame { |
| 182 | let dropped = self.dropped_events; |
| 183 | self.dropped_events = 0; |
| 184 | InputFrame::new(self.events.drain(..).collect(), dropped) |
| 185 | } |
no outgoing calls