Uses of Interface
com.google.cloud.spring.pubsub.support.converter.PubSubMessageConverter
Package
Description
Auto-configuration for Spring Cloud GCP Pub/Sub module.
Core support for Pub/Sub in Spring.
Operations and template for publishing in Spring Cloud GCP Pub/Sub.
Operations and template for subscribing in Spring Cloud GCP Pub/Sub.
Classes related to converting messages in Spring Cloud GCP Pub/Sub.
-
Uses of PubSubMessageConverter in com.google.cloud.spring.autoconfigure.pubsub
Modifier and TypeMethodDescriptionGcpPubSubAutoConfiguration.pubSubPublisherTemplate
(PublisherFactory publisherFactory, org.springframework.beans.factory.ObjectProvider<PubSubMessageConverter> pubSubMessageConverter) GcpPubSubAutoConfiguration.pubSubSubscriberTemplate
(SubscriberFactory subscriberFactory, org.springframework.beans.factory.ObjectProvider<PubSubMessageConverter> pubSubMessageConverter, org.springframework.beans.factory.ObjectProvider<Executor> asyncPullExecutor, Executor ackExecutor) -
Uses of PubSubMessageConverter in com.google.cloud.spring.pubsub.core
Modifier and TypeMethodDescriptionvoid
PubSubTemplate.setMessageConverter
(PubSubMessageConverter messageConverter) -
Uses of PubSubMessageConverter in com.google.cloud.spring.pubsub.core.publisher
Modifier and TypeMethodDescriptionvoid
PubSubPublisherTemplate.setMessageConverter
(PubSubMessageConverter pubSubMessageConverter) -
Uses of PubSubMessageConverter in com.google.cloud.spring.pubsub.core.subscriber
Modifier and TypeMethodDescriptionPubSubSubscriberTemplate.getMessageConverter()
Get the converter used to convert a message payload to the desired type.Modifier and TypeMethodDescriptionvoid
PubSubSubscriberTemplate.setMessageConverter
(PubSubMessageConverter pubSubMessageConverter) Set the converter used to convert a message payload to the desired type. -
Uses of PubSubMessageConverter in com.google.cloud.spring.pubsub.support.converter
Modifier and TypeClassDescriptionclass
A converter using Jackson JSON.class
A simplePubSubMessageConverter
that directly maps payloads of typebyte[]
,ByteString
,ByteBuffer
, andString
to Pub/Sub messages.