Package io.dapr.v1

Class DaprAppCallbackProtos.TopicEventRequest

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprAppCallbackProtos.TopicEventRequestOrBuilder, Serializable
Enclosing class:
DaprAppCallbackProtos

public static final class DaprAppCallbackProtos.TopicEventRequest extends com.google.protobuf.GeneratedMessageV3 implements DaprAppCallbackProtos.TopicEventRequestOrBuilder
 TopicEventRequest message is compatible with CloudEvent spec v1.0
 https://github.com/cloudevents/spec/blob/v1.0/spec.md
 
Protobuf type dapr.proto.runtime.v1.TopicEventRequest
See Also:
  • Field Details

  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getUnknownFields

      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • getId

      public String getId()
       id identifies the event. Producers MUST ensure that source + id 
       is unique for each distinct event. If a duplicate event is re-sent
       (e.g. due to a network error) it MAY have the same id. 
       
      string id = 1;
      Specified by:
      getId in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The id.
    • getIdBytes

      public com.google.protobuf.ByteString getIdBytes()
       id identifies the event. Producers MUST ensure that source + id 
       is unique for each distinct event. If a duplicate event is re-sent
       (e.g. due to a network error) it MAY have the same id. 
       
      string id = 1;
      Specified by:
      getIdBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for id.
    • getSource

      public String getSource()
       source identifies the context in which an event happened.
       Often this will include information such as the type of the
       event source, the organization publishing the event or the process
       that produced the event. The exact syntax and semantics behind
       the data encoded in the URI is defined by the event producer.
       
      string source = 2;
      Specified by:
      getSource in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The source.
    • getSourceBytes

      public com.google.protobuf.ByteString getSourceBytes()
       source identifies the context in which an event happened.
       Often this will include information such as the type of the
       event source, the organization publishing the event or the process
       that produced the event. The exact syntax and semantics behind
       the data encoded in the URI is defined by the event producer.
       
      string source = 2;
      Specified by:
      getSourceBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for source.
    • getType

      public String getType()
       The type of event related to the originating occurrence. 
       
      string type = 3;
      Specified by:
      getType in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The type.
    • getTypeBytes

      public com.google.protobuf.ByteString getTypeBytes()
       The type of event related to the originating occurrence. 
       
      string type = 3;
      Specified by:
      getTypeBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for type.
    • getSpecVersion

      public String getSpecVersion()
       The version of the CloudEvents specification. 
       
      string spec_version = 4;
      Specified by:
      getSpecVersion in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The specVersion.
    • getSpecVersionBytes

      public com.google.protobuf.ByteString getSpecVersionBytes()
       The version of the CloudEvents specification. 
       
      string spec_version = 4;
      Specified by:
      getSpecVersionBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for specVersion.
    • getDataContentType

      public String getDataContentType()
       The content type of data value.
       
      string data_content_type = 5;
      Specified by:
      getDataContentType in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The dataContentType.
    • getDataContentTypeBytes

      public com.google.protobuf.ByteString getDataContentTypeBytes()
       The content type of data value.
       
      string data_content_type = 5;
      Specified by:
      getDataContentTypeBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for dataContentType.
    • getData

      public com.google.protobuf.ByteString getData()
       The content of the event.
       
      bytes data = 7;
      Specified by:
      getData in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The data.
    • getTopic

      public String getTopic()
       The pubsub topic which publisher sent to.
       
      string topic = 6;
      Specified by:
      getTopic in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The topic.
    • getTopicBytes

      public com.google.protobuf.ByteString getTopicBytes()
       The pubsub topic which publisher sent to.
       
      string topic = 6;
      Specified by:
      getTopicBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for topic.
    • getPubsubName

      public String getPubsubName()
       The name of the pubsub the publisher sent to.
       
      string pubsub_name = 8;
      Specified by:
      getPubsubName in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The pubsubName.
    • getPubsubNameBytes

      public com.google.protobuf.ByteString getPubsubNameBytes()
       The name of the pubsub the publisher sent to.
       
      string pubsub_name = 8;
      Specified by:
      getPubsubNameBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for pubsubName.
    • getPath

      public String getPath()
       The matching path from TopicSubscription/routes (if specified) for this event.
       This value is used by OnTopicEvent to "switch" inside the handler.
       
      string path = 9;
      Specified by:
      getPath in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The path.
    • getPathBytes

      public com.google.protobuf.ByteString getPathBytes()
       The matching path from TopicSubscription/routes (if specified) for this event.
       This value is used by OnTopicEvent to "switch" inside the handler.
       
      string path = 9;
      Specified by:
      getPathBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The bytes for path.
    • hasExtensions

      public boolean hasExtensions()
       The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
       
      .google.protobuf.Struct extensions = 10;
      Specified by:
      hasExtensions in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      Whether the extensions field is set.
    • getExtensions

      public com.google.protobuf.Struct getExtensions()
       The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
       
      .google.protobuf.Struct extensions = 10;
      Specified by:
      getExtensions in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      Returns:
      The extensions.
    • getExtensionsOrBuilder

      public com.google.protobuf.StructOrBuilder getExtensionsOrBuilder()
       The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
       
      .google.protobuf.Struct extensions = 10;
      Specified by:
      getExtensionsOrBuilder in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

    • newBuilder

    • toBuilder

      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected DaprAppCallbackProtos.TopicEventRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static DaprAppCallbackProtos.TopicEventRequest getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<DaprAppCallbackProtos.TopicEventRequest> parser()
    • getParserForType

      public com.google.protobuf.Parser<DaprAppCallbackProtos.TopicEventRequest> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public DaprAppCallbackProtos.TopicEventRequest getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder