-
Notifications
You must be signed in to change notification settings - Fork 107
Open
Labels
api: pubsubIssues related to the Pub/Sub API.Issues related to the Pub/Sub API.
Milestone
Description
To simplify client creation for the publisher, we want to allow users to be able to create a Publisher directly without creating a Client first.
let publisher = pubsub::client::Publisher::builder(topic_name).build().await?;
// ready to start publishingWe will accomplish this by
- Renaming Client -> BasePublisher
- Renaming PublisherBuilder -> PublisherPartialBuilder
- Adding a new builder() to Publisher that configures client and batching configuration.
- Moving BasePublisher to a publisher module as an advanced use case.
Metadata
Metadata
Assignees
Labels
api: pubsubIssues related to the Pub/Sub API.Issues related to the Pub/Sub API.