Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DefaultMarshaler ¶
type DefaultMarshaler struct{}
func (DefaultMarshaler) Marshal ¶
func (d DefaultMarshaler) Marshal(msg *message.Message) (interface{}, error)
func (DefaultMarshaler) Unmarshal ¶
func (d DefaultMarshaler) Unmarshal(doc *firestore.DocumentSnapshot) (*message.Message, error)
type Publisher ¶
type Publisher struct {
// contains filtered or unexported fields
}
func NewPublisher ¶
func NewPublisher(config PublisherConfig, logger watermill.LoggerAdapter) (*Publisher, error)
func (*Publisher) PublishInTransaction ¶
type PublisherConfig ¶
type PublisherConfig struct { // ProjectID is an ID of a Google Cloud project with Firestore database. ProjectID string // PubSubRootCollection is a name of a collection which will be used as a root collection for the PubSub. // It defaults to "pubsub". PubSubRootCollection string // MessagePublishTimeout is a timeout used for a single `Publish` call. // It defaults to 1 minute. MessagePublishTimeout time.Duration // SubscriptionsCacheValidityDuration is used for internal subscriptions cache // in order to reduce fetch calls to Firestore on each `Publish` method call. // // If you prefer to not cache subscriptions and fetch them each time `Publish` // is called, please set `DontCacheSubscriptions` to true. // // It defaults to 500 milliseconds. SubscriptionsCacheValidityDuration time.Duration // DontCacheSubscriptions should be set to true when you don't want // Publisher to keep an internal cache of subscribers. DontCacheSubscriptions bool // GoogleClientOpts are options passed directly to firestore client. GoogleClientOpts []option.ClientOption // Marshaler marshals message from Watermill to Firestore format and vice versa. Marshaler Marshaler // CustomFirestoreClient can be used to override a default client. CustomFirestoreClient *firestore.Client }
type Subscriber ¶
type Subscriber struct {
// contains filtered or unexported fields
}
func NewSubscriber ¶
func NewSubscriber(config SubscriberConfig, logger watermill.LoggerAdapter) (*Subscriber, error)
func (*Subscriber) Close ¶
func (s *Subscriber) Close() error
func (*Subscriber) QueueLength ¶
func (s *Subscriber) QueueLength(topic string) (int, error)
func (*Subscriber) SubscribeInitialize ¶
func (s *Subscriber) SubscribeInitialize(topic string) error
type SubscriberConfig ¶
type SubscriberConfig struct { // ProjectID is an ID of a Google Cloud project with Firestore database. ProjectID string // GenerateSubscriptionName should accept topic name and construct a subscription name basing on it. // // It defaults to topic -> topic + "_sub". GenerateSubscriptionName GenerateSubscriptionNameFn // PubSubRootCollection is a name of a collection which will be used as a root collection for the PubSub. // // It defaults to "pubsub". PubSubRootCollection string // Timeout is used for single Firestore operations. // // It defaults to 30 seconds. Timeout time.Duration // GoogleClientOpts are options passed directly to firestore client. GoogleClientOpts []option.ClientOption // Marshaler marshals message from Watermill to Firestore format and vice versa. Marshaler Marshaler // CustomFirestoreClient can be used to override a default client. CustomFirestoreClient *firestore.Client }
type TransactionalPublisher ¶
type TransactionalPublisher struct {
// contains filtered or unexported fields
}
func NewTransactionalPublisher ¶
func NewTransactionalPublisher(config PublisherConfig, tx *firestore.Transaction, logger watermill.LoggerAdapter) (*TransactionalPublisher, error)
func (*TransactionalPublisher) Close ¶
func (p *TransactionalPublisher) Close() error
Click to show internal directories.
Click to hide internal directories.