tree: 9ccb626b5563eb9edaa273b90855b93e660395b6 [path history] [tgz]
  1. apiv1/
  2. internal/
  3. loadtest/
  4. pstest/
  5. testdata/
  6. CHANGES.md
  7. debug.go
  8. doc.go
  9. example_subscription_iterator_test.go
  10. example_test.go
  11. example_topic_iterator_test.go
  12. flow_controller.go
  13. flow_controller_test.go
  14. go.mod
  15. go.sum
  16. go_mod_tidy_hack.go
  17. integration_test.go
  18. iterator.go
  19. iterator_test.go
  20. message.go
  21. mock_test.go
  22. nodebug.go
  23. pstest_test.go
  24. pubsub.go
  25. pullstream.go
  26. pullstream_test.go
  27. README.md
  28. service.go
  29. snapshot.go
  30. streaming_pull_test.go
  31. subscription.go
  32. subscription_test.go
  33. timeout_test.go
  34. topic.go
  35. topic_test.go
  36. trace.go
pubsub/README.md

Cloud Pub/Sub GoDoc

Example Usage

First create a pubsub.Client to use throughout your application:

client, err := pubsub.NewClient(ctx, "project-id")
if err != nil {
	log.Fatal(err)
}

Then use the client to publish and subscribe:

// Publish "hello world" on topic1.
topic := client.Topic("topic1")
res := topic.Publish(ctx, &pubsub.Message{
	Data: []byte("hello world"),
})
// The publish happens asynchronously.
// Later, you can get the result from res:
...
msgID, err := res.Get(ctx)
if err != nil {
	log.Fatal(err)
}

// Use a callback to receive messages via subscription1.
sub := client.Subscription("subscription1")
err = sub.Receive(ctx, func(ctx context.Context, m *pubsub.Message) {
	fmt.Println(m.Data)
	m.Ack() // Acknowledge that we've consumed the message.
})
if err != nil {
	log.Println(err)
}