NewTopic creates a new in-memory topic.
()
| 140 | |
| 141 | // NewTopic creates a new in-memory topic. |
| 142 | func NewTopic() *pubsub.Topic { |
| 143 | return NewTopicWithOptions(nil) |
| 144 | } |
| 145 | |
| 146 | // NewTopicWithOptions is similar to NewTopic, but supports TopicOptions. |
| 147 | func NewTopicWithOptions(opts *TopicOptions) *pubsub.Topic { |