Close shutdowns the event sequencer.
()
| 115 | |
| 116 | // Close shutdowns the event sequencer. |
| 117 | func (s *Sequencer) Close() error { |
| 118 | s.quit <- struct{}{} |
| 119 | return s.key.Close() |
| 120 | } |
| 121 | |
| 122 | // Shutdown stores the sequence and closes the event sequencer. |
| 123 | func (s *Sequencer) Shutdown() error { |