Interface CustomSerDesClient
-
@PubSubClient public interface CustomSerDesClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsend(byte[] data)voidsend(com.google.pubsub.v1.PubsubMessage pubsubMessage)voidsend(Animal animal)voidsendWithCustomType(byte[] data)voidsendWithCustomType(Animal animal)
-
-
-
Method Detail
-
send
@Topic("animals") void send(com.google.pubsub.v1.PubsubMessage pubsubMessage)
-
send
@Topic("animals") void send(byte[] data)
-
sendWithCustomType
@Topic(value="animals", contentType="image/gif") void sendWithCustomType(byte[] data)
-
sendWithCustomType
@Topic(value="animals", contentType="application/xml") void sendWithCustomType(Animal animal)
-
-