Can we use Updates in Selector?

Hi, I was exploring the Updates feature. Is it possible to use this with a selector using the go sdk?

Something like how Selector can receive a Signal, but instead, we use Update?

Create a Channel using workflow.NewChannel. Then, send messages to the channel from the update handler. Consume from the Channel the same way you would consume from a signal Channel.

thanks! will try this out