How to send a message to a specific subscriber among the subscribers?
Open
- Dominant language
- Go
- Stars
- 10.8k
- Forks
- 1.3k
- Avg merge
- 2d 36m
- Merged PRs (30d)
- 26
Description
Hi everyone.
How to send a message to a specific subscriber among the subscribers?
```
func (r *subscriptionResolver) Message(ctx context.Context) (<-chan string, error) {
randomString := make(chan string, 1)
go func() {
<-ctx.Done()
}()
randomString <- randString(8)
return randomString, nil
}
```
Contributor guide
Assessment
This issue has not been assessed yet.