Interface Protocol.BackgroundInvokeEntryMessageOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getInvokeTime()
      Time when this BackgroundInvoke should be executed.
      java.lang.String getMethodName()
      string method_name = 2;
      com.google.protobuf.ByteString getMethodNameBytes()
      string method_name = 2;
      com.google.protobuf.ByteString getParameter()
      bytes parameter = 3;
      java.lang.String getServiceName()
      string service_name = 1;
      com.google.protobuf.ByteString getServiceNameBytes()
      string service_name = 1;
      • 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

      • getServiceName

        java.lang.String getServiceName()
        string service_name = 1;
        Returns:
        The serviceName.
      • getServiceNameBytes

        com.google.protobuf.ByteString getServiceNameBytes()
        string service_name = 1;
        Returns:
        The bytes for serviceName.
      • getMethodName

        java.lang.String getMethodName()
        string method_name = 2;
        Returns:
        The methodName.
      • getMethodNameBytes

        com.google.protobuf.ByteString getMethodNameBytes()
        string method_name = 2;
        Returns:
        The bytes for methodName.
      • getParameter

        com.google.protobuf.ByteString getParameter()
        bytes parameter = 3;
        Returns:
        The parameter.
      • getInvokeTime

        long getInvokeTime()
         Time when this BackgroundInvoke should be executed.
         The time is set as duration since UNIX Epoch.
         If this value is not set, equal to 0, or past in time,
         the runtime will execute this BackgroundInvoke as soon as possible.
         
        uint64 invoke_time = 4;
        Returns:
        The invokeTime.