Interface EventBusMessageOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
EventBusMessage, EventBusMessage.Builder

public interface EventBusMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Message headers
    The address the message was sent to
    com.google.protobuf.ByteString
    The address the message was sent to
    Message payload
    Message payload
    The consumer ID for subscription management
    com.google.protobuf.ByteString
    The consumer ID for subscription management
    Deprecated.
    int
    Message headers
    Message headers
    getHeadersOrDefault(String key, String defaultValue)
    Message headers
    Message headers
    Optional reply address Presence means that the message is expecting a reply at this reply address This reply address shall be used in Send rpc or Request rpc
    com.google.protobuf.ByteString
    Optional reply address Presence means that the message is expecting a reply at this reply address This reply address shall be used in Send rpc or Request rpc
    boolean
    Message payload

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getAddress

      String getAddress()
      The address the message was sent to
      
      string address = 1;
      Returns:
      The address.
    • getAddressBytes

      com.google.protobuf.ByteString getAddressBytes()
      The address the message was sent to
      
      string address = 1;
      Returns:
      The bytes for address.
    • getConsumerId

      String getConsumerId()
      The consumer ID for subscription management
      
      string consumer_id = 2;
      Returns:
      The consumerId.
    • getConsumerIdBytes

      com.google.protobuf.ByteString getConsumerIdBytes()
      The consumer ID for subscription management
      
      string consumer_id = 2;
      Returns:
      The bytes for consumerId.
    • getReplyAddress

      String getReplyAddress()
      Optional reply address
      Presence means that the message is expecting a reply at this reply address
      This reply address shall be used in Send rpc or Request rpc
      
      string reply_address = 3;
      Returns:
      The replyAddress.
    • getReplyAddressBytes

      com.google.protobuf.ByteString getReplyAddressBytes()
      Optional reply address
      Presence means that the message is expecting a reply at this reply address
      This reply address shall be used in Send rpc or Request rpc
      
      string reply_address = 3;
      Returns:
      The bytes for replyAddress.
    • getHeadersCount

      int getHeadersCount()
      Message headers
      
      map<string, string> headers = 4;
    • containsHeaders

      boolean containsHeaders(String key)
      Message headers
      
      map<string, string> headers = 4;
    • getHeaders

      @Deprecated Map<String,String> getHeaders()
      Deprecated.
      Use getHeadersMap() instead.
    • getHeadersMap

      Map<String,String> getHeadersMap()
      Message headers
      
      map<string, string> headers = 4;
    • getHeadersOrDefault

      String getHeadersOrDefault(String key, String defaultValue)
      Message headers
      
      map<string, string> headers = 4;
    • getHeadersOrThrow

      String getHeadersOrThrow(String key)
      Message headers
      
      map<string, string> headers = 4;
    • hasBody

      boolean hasBody()
      Message payload
      
      .vertx.event.v1alpha.JsonValue body = 5;
      Returns:
      Whether the body field is set.
    • getBody

      JsonValue getBody()
      Message payload
      
      .vertx.event.v1alpha.JsonValue body = 5;
      Returns:
      The body.
    • getBodyOrBuilder

      JsonValueOrBuilder getBodyOrBuilder()
      Message payload
      
      .vertx.event.v1alpha.JsonValue body = 5;