Package io.dapr.v1

Interface DaprProtos.StartWorkflowRequestOrBuilder

    • Method Detail

      • getInstanceId

        String getInstanceId()
         The ID to assign to the started workflow instance. If empty, a random ID is generated.
         
        string instance_id = 1 [json_name = "instanceID"];
        Returns:
        The instanceId.
      • getInstanceIdBytes

        com.google.protobuf.ByteString getInstanceIdBytes()
         The ID to assign to the started workflow instance. If empty, a random ID is generated.
         
        string instance_id = 1 [json_name = "instanceID"];
        Returns:
        The bytes for instanceId.
      • getWorkflowComponent

        String getWorkflowComponent()
         Name of the workflow component.
         
        string workflow_component = 2 [json_name = "workflowComponent"];
        Returns:
        The workflowComponent.
      • getWorkflowComponentBytes

        com.google.protobuf.ByteString getWorkflowComponentBytes()
         Name of the workflow component.
         
        string workflow_component = 2 [json_name = "workflowComponent"];
        Returns:
        The bytes for workflowComponent.
      • getWorkflowName

        String getWorkflowName()
         Name of the workflow.
         
        string workflow_name = 3 [json_name = "workflowName"];
        Returns:
        The workflowName.
      • getWorkflowNameBytes

        com.google.protobuf.ByteString getWorkflowNameBytes()
         Name of the workflow.
         
        string workflow_name = 3 [json_name = "workflowName"];
        Returns:
        The bytes for workflowName.
      • getOptionsCount

        int getOptionsCount()
         Additional component-specific options for starting the workflow instance.
         
        map<string, string> options = 4;
      • containsOptions

        boolean containsOptions​(String key)
         Additional component-specific options for starting the workflow instance.
         
        map<string, string> options = 4;
      • getOptionsMap

        Map<String,​String> getOptionsMap()
         Additional component-specific options for starting the workflow instance.
         
        map<string, string> options = 4;
      • getOptionsOrDefault

        String getOptionsOrDefault​(String key,
                                   String defaultValue)
         Additional component-specific options for starting the workflow instance.
         
        map<string, string> options = 4;
      • getOptionsOrThrow

        String getOptionsOrThrow​(String key)
         Additional component-specific options for starting the workflow instance.
         
        map<string, string> options = 4;
      • getInput

        com.google.protobuf.ByteString getInput()
         Input data for the workflow instance.
         
        bytes input = 5;
        Returns:
        The input.