Interface Base.CallInfoOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Base.CallInfo, Base.CallInfo.Builder
Enclosing class:
Base

public static interface Base.CallInfoOrBuilder
extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type Method Description
    int getInstanceId()
    Unique service instance identifier.
    int getMethodId()
    Identifier of the method in the service interface required for the call.

    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

    • getInstanceId

      int getInstanceId()
       Unique service instance identifier. The dispatcher uses this identifier to
       find the corresponding runtime to execute a transaction.
       
      uint32 instance_id = 1;
      Returns:
      The instanceId.
    • getMethodId

      int getMethodId()
       Identifier of the method in the service interface required for the call.
       
      uint32 method_id = 2;
      Returns:
      The methodId.