aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xgb.go
diff options
context:
space:
mode:
Diffstat (limited to 'nexgb/xgb.go')
-rw-r--r--nexgb/xgb.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/nexgb/xgb.go b/nexgb/xgb.go
index b2cf56c..c52f722 100644
--- a/nexgb/xgb.go
+++ b/nexgb/xgb.go
@@ -379,12 +379,14 @@ func (c *Conn) readResponses() {
// FIXME: I'm not sure if using a goroutine here to guarantee
// a non-blocking send is the right way to go. I should implement
// a proper dynamic queue.
- if cap(c.eventChan) == len(c.eventChan) {
+ // I am pretty sure this also loses a guarantee of events being
+ // processed in order of being received.
+ select {
+ case c.eventChan <- event:
+ default:
go func() {
c.eventChan <- event
}()
- } else {
- c.eventChan <- event
}
// No more processing for events.