Skip to content

Instantly share code, notes, and snippets.

@zhangyuchi
Created April 14, 2016 07:17
Show Gist options
  • Save zhangyuchi/0307b83976fc8c258f228031a40eba69 to your computer and use it in GitHub Desktop.
Save zhangyuchi/0307b83976fc8c258f228031a40eba69 to your computer and use it in GitHub Desktop.
unblock wait
quitWriteSignal := make(bool chan)
select {
case quitWriteSignal <- true:
default:
}
@zhangyuchi
Copy link
Author

如果不能立刻写入quitWriteSignal,则走到default,即放弃这次写入

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment