nestjs-google-pubsub-microservice icon indicating copy to clipboard operation
nestjs-google-pubsub-microservice copied to clipboard

Custom Google Cloud Pub/Sub microservice transport for Nest framework (node.js)

Results 6 nestjs-google-pubsub-microservice issues
Sort by recently updated
recently updated
newest added

it would be nice and awesome if attributes can be sent along with the messages, right now its hardcoded from the lib it self but would be great if it...

#### Code: ``` const app = await NestFactory.createMicroservice( ApplicationModule, { strategy: new GCPubSubServer({ topic: 'projects/ALPHA/topics/FOO', subscription: 'projects/BETA/subscriptions/FOO', init: true, checkExistence: true, client: { projectId: 'BETA', }, }), }, ); ```...

I'm experiencing an awkward bug. I've two microservices with the same MessageService class ``` export class MessageService implements OnApplicationShutdown, MessageServiceInterface { private client: GCPubSubClient; private readonly projectId: string; private readonly...

Hi, I'm very much liking the transporter and wanted it to support [cloud events](https://cloudevents.io/) specification. I have some pubsub subscriptions which deal with google generated cloud events and the data...

Hi, I want to create Subscriptions with options like [Deadletter policy](https://github.com/googleapis/nodejs-pubsub/blob/main/samples/createSubscriptionWithDeadLetterPolicy.js#L52) or [Retry policy](https://github.com/googleapis/nodejs-pubsub/blob/main/samples/createSubscriptionWithRetryPolicy.js#L52). Do we agree it is not possible yet (since we can only provide the Subscription name)?