Interface ServerMessageOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getCall()
      If applicable, the call associated with this message
      com.google.protobuf.Any getData()
      .google.protobuf.Any data = 4;
      com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      .google.protobuf.Any data = 4;
      int getSeq()
      Sequence counter (scoped to the call)
      String getType()
      Message type.
      com.google.protobuf.ByteString getTypeBytes()
      Message type.
      boolean hasData()
      .google.protobuf.Any data = 4;
      • 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 Detail

      • getType

        String getType()
         Message type. Typically the name of the subscribed topic, or a built-in like "reply".
         
        string type = 1;
      • getTypeBytes

        com.google.protobuf.ByteString getTypeBytes()
         Message type. Typically the name of the subscribed topic, or a built-in like "reply".
         
        string type = 1;
      • getCall

        int getCall()
         If applicable, the call associated with this message
         
        int32 call = 2;
      • getSeq

        int getSeq()
         Sequence counter (scoped to the call)
         
        int32 seq = 3;
      • hasData

        boolean hasData()
        .google.protobuf.Any data = 4;
      • getData

        com.google.protobuf.Any getData()
        .google.protobuf.Any data = 4;
      • getDataOrBuilder

        com.google.protobuf.AnyOrBuilder getDataOrBuilder()
        .google.protobuf.Any data = 4;