()
| 253 | } |
| 254 | |
| 255 | func (q *EventQueue) notSafeToAccess() bool { |
| 256 | return q == nil || q.close == nil || q.drain == nil || q.events == nil |
| 257 | } |
| 258 | |
| 259 | // Stop stops any further events from being processed by the EventQueue. Any |
| 260 | // event which is currently being processed by the EventQueue will continue to |