Index

A B C D F G I N P R S T V W 
All Classes and Interfaces|All Packages

A

allOf(List<Task<V>>) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Returns a new Task that is completed when all the given Tasks complete.
allOf(List<Task<V>>) - Method in interface io.dapr.workflows.WorkflowContext
Returns a new Task that is completed when all the given Tasks complete.
anyOf(Task<?>...) - Method in interface io.dapr.workflows.WorkflowContext
Returns a new Task that is completed when any of the given Tasks complete.
anyOf(List<Task<?>>) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Returns a new Task that is completed when any of the tasks in tasks completes.
anyOf(List<Task<?>>) - Method in interface io.dapr.workflows.WorkflowContext
Returns a new Task that is completed when any of the tasks in tasks completes.
ApiTokenClientInterceptor - Class in io.dapr.workflows.internal
 
ApiTokenClientInterceptor() - Constructor for class io.dapr.workflows.internal.ApiTokenClientInterceptor
 

B

build() - Method in class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Returns a WorkflowRuntime object.
build() - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy.Builder
Build the WorkflowTaskRetryPolicy.

C

callActivity(String) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes an activity by name and returns a new Task that completes when the activity completes.
callActivity(String, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes an activity by name and returns a new Task that completes when the activity completes.
callActivity(String, Object) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes an activity by name and with the specified input value and returns a new Task that completes when the activity completes.
callActivity(String, Object, WorkflowTaskOptions) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes an activity by name and with the specified input value and returns a new Task that completes when the activity completes.
callActivity(String, Object, WorkflowTaskOptions, Class<V>) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Asynchronously invokes an activity by name and with the specified input value and returns a new Task that completes when the activity completes.
callActivity(String, Object, WorkflowTaskOptions, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes an activity by name and with the specified input value and returns a new Task that completes when the activity completes.
callActivity(String, Object, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes an activity by name and with the specified input value and returns a new Task that completes when the activity completes.If the activity completes successfully, the returned Task's value will be the activity's output.
callChildWorkflow(String) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
callChildWorkflow(String, Object) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
callChildWorkflow(String, Object, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
callChildWorkflow(String, Object, String, WorkflowTaskOptions) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
callChildWorkflow(String, Object, String, WorkflowTaskOptions, Class<V>) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
callChildWorkflow(String, Object, String, WorkflowTaskOptions, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
callChildWorkflow(String, Object, String, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Asynchronously invokes another workflow as a child-workflow and returns a Task that completes when the child-workflow completes.
CANCELED - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow was abruptly cancelled via a management API call.
close() - Method in class io.dapr.workflows.client.DaprWorkflowClient
Closes the inner DurableTask client and shutdown the GRPC channel.
close() - Method in class io.dapr.workflows.runtime.WorkflowRuntime
complete(Object) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Completes the current workflow.
complete(Object) - Method in interface io.dapr.workflows.WorkflowContext
Completes the current workflow.
COMPLETED - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow completed normally.
continueAsNew(Object) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Restarts the orchestration with a new input and clears its history.
continueAsNew(Object) - Method in interface io.dapr.workflows.WorkflowContext
Restarts the orchestration with a new input and clears its history.
continueAsNew(Object, boolean) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Restarts the orchestration with a new input and clears its history.
continueAsNew(Object, boolean) - Method in interface io.dapr.workflows.WorkflowContext
Restarts the orchestration with a new input and clears its history.
CONTINUED_AS_NEW - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow is continued as new.
create() - Method in class io.dapr.workflows.runtime.WorkflowActivityClassWrapper
 
create() - Method in class io.dapr.workflows.runtime.WorkflowActivityInstanceWrapper
 
create() - Method in interface io.dapr.workflows.Workflow
Executes the workflow logic.
createTaskHub(boolean) - Method in class io.dapr.workflows.client.DaprWorkflowClient
 
createTimer(Duration) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Creates a durable timer that expires after the specified delay.
createTimer(Duration) - Method in interface io.dapr.workflows.WorkflowContext
Creates a durable timer that expires after the specified delay.
createTimer(ZonedDateTime) - Method in interface io.dapr.workflows.WorkflowContext
Creates a durable timer that expires after the specified timestamp with specific zone.

D

DaprWorkflowClient - Class in io.dapr.workflows.client
Defines client operations for managing Dapr Workflow instances.
DaprWorkflowClient() - Constructor for class io.dapr.workflows.client.DaprWorkflowClient
Public constructor for DaprWorkflowClient.
DaprWorkflowClient(Properties) - Constructor for class io.dapr.workflows.client.DaprWorkflowClient
Public constructor for DaprWorkflowClient.
DefaultWorkflowContext - Class in io.dapr.workflows.runtime
 
DefaultWorkflowContext(TaskOrchestrationContext) - Constructor for class io.dapr.workflows.runtime.DefaultWorkflowContext
Constructor for DaprWorkflowContextImpl.
DefaultWorkflowContext(TaskOrchestrationContext, Logger) - Constructor for class io.dapr.workflows.runtime.DefaultWorkflowContext
Constructor for DaprWorkflowContextImpl.
deleteTaskHub() - Method in class io.dapr.workflows.client.DaprWorkflowClient
 

F

FAILED - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow completed with an unhandled exception.
fromOrchestrationRuntimeStatus(OrchestrationRuntimeStatus) - Static method in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
Convert runtime OrchestrationRuntimeStatus to WorkflowRuntimeStatus.

G

getBackoffCoefficient() - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy
 
getCreatedAt() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the workflow instance's creation time in UTC.
getCurrentInstant() - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Gets the current orchestration time in UTC.
getCurrentInstant() - Method in interface io.dapr.workflows.WorkflowContext
Gets the current orchestration time in UTC.
getErrorMessage() - Method in class io.dapr.workflows.client.WorkflowFailureDetails
Gets the error message.
getErrorType() - Method in class io.dapr.workflows.client.WorkflowFailureDetails
Gets the error type, which is the namespace-qualified exception type name.
getFailureDetails() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the failure details, if any, for the failed workflow instance.
getFirstRetryInterval() - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy
 
getInput() - Method in class io.dapr.workflows.client.NewWorkflowOptions
Gets the input of the new workflow.
getInput(Class<T>) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Gets the deserialized input of the current task orchestration.
getInput(Class<T>) - Method in interface io.dapr.workflows.WorkflowActivityContext
 
getInput(Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Gets the deserialized input of the current task orchestration.
getInstanceId() - Method in class io.dapr.workflows.client.NewWorkflowOptions
Gets the instance ID of the new workflow.
getInstanceId() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the unique ID of the workflow instance.
getInstanceId() - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Gets the instance ID of the current workflow.
getInstanceId() - Method in interface io.dapr.workflows.WorkflowContext
Gets the instance ID of the current workflow.
getInstanceState(String, boolean) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Fetches workflow instance metadata from the configured durable store.
getLastUpdatedAt() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the workflow instance's last updated time in UTC.
getLogger() - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Get a logger only when isReplaying is false.
getLogger() - Method in interface io.dapr.workflows.WorkflowContext
Get a logger only when isReplaying is false.
getMaxNumberOfAttempts() - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy
 
getMaxRetryInterval() - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy
 
getName() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the name of the workflow.
getName() - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Gets the name of the current workflow.
getName() - Method in class io.dapr.workflows.runtime.WorkflowActivityClassWrapper
 
getName() - Method in class io.dapr.workflows.runtime.WorkflowActivityInstanceWrapper
 
getName() - Method in interface io.dapr.workflows.WorkflowActivityContext
 
getName() - Method in interface io.dapr.workflows.WorkflowContext
Gets the name of the current workflow.
getNewOrchestrationInstanceOptions() - Method in class io.dapr.workflows.client.NewWorkflowOptions
 
getRetryPolicy() - Method in class io.dapr.workflows.WorkflowTaskOptions
 
getRetryTimeout() - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy
 
getRuntimeStatus() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the current runtime status of the workflow instance at the time this object was fetched.
getSerializedInput() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the workflow instance's serialized input, if any, as a string value.
getSerializedOutput() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets the workflow instance's serialized output, if any, as a string value.
getStackTrace() - Method in class io.dapr.workflows.client.WorkflowFailureDetails
Gets the stack trace.
getStartTime() - Method in class io.dapr.workflows.client.NewWorkflowOptions
Gets the configured start time of the new workflow instance.
getVersion() - Method in class io.dapr.workflows.client.NewWorkflowOptions
Gets the user-specified version of the new workflow.

I

interceptCall(MethodDescriptor<ReqT, RespT>, CallOptions, Channel) - Method in class io.dapr.workflows.internal.ApiTokenClientInterceptor
 
io.dapr.workflows - package io.dapr.workflows
 
io.dapr.workflows.client - package io.dapr.workflows.client
 
io.dapr.workflows.internal - package io.dapr.workflows.internal
 
io.dapr.workflows.runtime - package io.dapr.workflows.runtime
 
isCompleted() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets a value indicating whether the workflow instance was completed at the time this object was fetched.
isReplaying() - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
 
isReplaying() - Method in interface io.dapr.workflows.WorkflowContext
Gets a value indicating whether the workflow is currently replaying a previous execution.
isRunning() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Gets a value indicating whether the workflow instance was running at the time this object was fetched.

N

newBuilder() - Static method in class io.dapr.workflows.WorkflowTaskRetryPolicy
 
newUuid() - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Create a new UUID that is safe for replay within a workflow.
newUuid() - Method in interface io.dapr.workflows.WorkflowContext
Create a new UUID that is safe for replay within a workflow.
NewWorkflowOptions - Class in io.dapr.workflows.client
Options for starting a new instance of a workflow.
NewWorkflowOptions() - Constructor for class io.dapr.workflows.client.NewWorkflowOptions
 

P

PENDING - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow was scheduled but hasn't started running.
purgeInstance(String) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Purges workflow instance state from the workflow state store.

R

raiseEvent(String, String, Object) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Sends an event notification message to awaiting workflow instance.
readInputAs(Class<T>) - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Deserializes the workflow's input into an object of the specified type.
readOutputAs(Class<T>) - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Deserializes the workflow's output into an object of the specified type.
registerActivity(Class<T>) - Method in class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Registers an Activity object.
registerActivity(T) - Method in class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Registers an Activity object.
registerWorkflow(Class<T>) - Method in class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Registers a Workflow object.
registerWorkflow(T) - Method in class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Registers a Workflow object.
run(WorkflowActivityContext) - Method in interface io.dapr.workflows.WorkflowActivity
Executes the activity logic and returns a value which will be serialized and returned to the calling orchestrator.
run(WorkflowContext) - Method in interface io.dapr.workflows.Workflow
Executes the workflow logic.
run(WorkflowContext) - Method in interface io.dapr.workflows.WorkflowStub
 
RUNNING - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow started running.

S

scheduleNewWorkflow(Class<T>) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Schedules a new workflow using DurableTask client.
scheduleNewWorkflow(Class<T>, NewWorkflowOptions) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Schedules a new workflow with a specified set of options for execution.
scheduleNewWorkflow(Class<T>, Object) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Schedules a new workflow using DurableTask client.
scheduleNewWorkflow(Class<T>, Object, String) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Schedules a new workflow using DurableTask client.
setBackoffCoefficient(double) - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy.Builder
Set the backoff coefficient.
setFirstRetryInterval(Duration) - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy.Builder
Set the interval to wait before the first retry.
setInput(Object) - Method in class io.dapr.workflows.client.NewWorkflowOptions
Sets the input of the workflow to start.
setInstanceId(String) - Method in class io.dapr.workflows.client.NewWorkflowOptions
Sets the instance ID of the workflow to start.
setMaxNumberOfAttempts(int) - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy.Builder
Set the maximum number of attempts to retry the workflow.
setMaxRetryInterval(Duration) - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy.Builder
Set the maximum interval to wait between retries.
setRetryTimeout(Duration) - Method in class io.dapr.workflows.WorkflowTaskRetryPolicy.Builder
Set the maximum retry timeout.
setStartTime(Instant) - Method in class io.dapr.workflows.client.NewWorkflowOptions
Sets the start time of the new workflow.
setVersion(String) - Method in class io.dapr.workflows.client.NewWorkflowOptions
Sets the version of the workflow to start.
start() - Method in class io.dapr.workflows.runtime.WorkflowRuntime
Start the Workflow runtime processing items and block.
start(boolean) - Method in class io.dapr.workflows.runtime.WorkflowRuntime
Start the Workflow runtime processing items.
SUSPENDED - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow was suspended.

T

TERMINATED - Enum constant in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
The workflow was abruptly terminated via a management API call.
terminateWorkflow(String, Object) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Terminates the workflow associated with the provided instance id.
toOrchestrationRuntimeStatus(WorkflowRuntimeStatus) - Static method in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
Convert runtime WorkflowRuntimeStatus to OrchestrationRuntimeStatus.
toOrchestrationRuntimeStatus(List<WorkflowRuntimeStatus>) - Static method in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
Convert runtime WorkflowRuntimeStatus to OrchestrationRuntimeStatus.
toString() - Method in class io.dapr.workflows.client.WorkflowFailureDetails
 
toString() - Method in class io.dapr.workflows.client.WorkflowInstanceStatus
Generates a user-friendly string representation of the current metadata object.

V

valueOf(String) - Static method in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.dapr.workflows.runtime.WorkflowRuntimeStatus
Returns an array containing the constants of this enum type, in the order they are declared.

W

waitForExternalEvent(String) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received.
waitForExternalEvent(String) - Method in interface io.dapr.workflows.WorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received.
waitForExternalEvent(String, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received.
waitForExternalEvent(String, Duration) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received or is canceled when timeout expires.
waitForExternalEvent(String, Duration) - Method in interface io.dapr.workflows.WorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received or is canceled when timeout expires.
waitForExternalEvent(String, Duration, Class<V>) - Method in class io.dapr.workflows.runtime.DefaultWorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received or is canceled when timeout expires.
waitForExternalEvent(String, Duration, Class<V>) - Method in interface io.dapr.workflows.WorkflowContext
Waits for an event to be raised named name and returns a Task that completes when the event is received or is canceled when timeout expires.
waitForInstanceCompletion(String, Duration, boolean) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Waits for an workflow to complete and returns an WorkflowInstanceStatus object that contains metadata about the completed instance.
waitForInstanceStart(String, Duration, boolean) - Method in class io.dapr.workflows.client.DaprWorkflowClient
Waits for an workflow to start running and returns an WorkflowInstanceStatus object that contains metadata about the started instance and optionally its input, output, and custom status payloads.
Workflow - Interface in io.dapr.workflows
Common interface for workflow implementations.
WorkflowActivity - Interface in io.dapr.workflows
Common interface for task activity implementations.
WorkflowActivityClassWrapper<T extends WorkflowActivity> - Class in io.dapr.workflows.runtime
Wrapper for Durable Task Framework task activity factory.
WorkflowActivityClassWrapper(Class<T>) - Constructor for class io.dapr.workflows.runtime.WorkflowActivityClassWrapper
Constructor for WorkflowActivityWrapper.
WorkflowActivityContext - Interface in io.dapr.workflows
 
WorkflowActivityInstanceWrapper<T extends WorkflowActivity> - Class in io.dapr.workflows.runtime
Wrapper for Durable Task Framework task activity factory.
WorkflowActivityInstanceWrapper(T) - Constructor for class io.dapr.workflows.runtime.WorkflowActivityInstanceWrapper
Constructor for WorkflowActivityWrapper.
WorkflowContext - Interface in io.dapr.workflows
Context object used by workflow implementations to perform actions such as scheduling activities, durable timers, waiting for external events, and for getting basic information about the current workflow instance.
WorkflowFailureDetails - Class in io.dapr.workflows.client
Represents a workflow failure details.
WorkflowFailureDetails(FailureDetails) - Constructor for class io.dapr.workflows.client.WorkflowFailureDetails
Class constructor.
WorkflowInstanceStatus - Class in io.dapr.workflows.client
Represents a snapshot of a workflow instance's current state, including metadata.
WorkflowInstanceStatus(OrchestrationMetadata) - Constructor for class io.dapr.workflows.client.WorkflowInstanceStatus
Class constructor.
WorkflowRuntime - Class in io.dapr.workflows.runtime
Contains methods to register workflows and activities.
WorkflowRuntime(DurableTaskGrpcWorker) - Constructor for class io.dapr.workflows.runtime.WorkflowRuntime
 
WorkflowRuntimeBuilder - Class in io.dapr.workflows.runtime
 
WorkflowRuntimeBuilder() - Constructor for class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Constructs the WorkflowRuntimeBuilder.
WorkflowRuntimeBuilder(Properties) - Constructor for class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
Constructs the WorkflowRuntimeBuilder.
WorkflowRuntimeBuilder(Logger) - Constructor for class io.dapr.workflows.runtime.WorkflowRuntimeBuilder
 
WorkflowRuntimeStatus - Enum in io.dapr.workflows.runtime
Enum describing the runtime status of a workflow.
WorkflowStub - Interface in io.dapr.workflows
 
WorkflowTaskOptions - Class in io.dapr.workflows
 
WorkflowTaskOptions(WorkflowTaskRetryPolicy) - Constructor for class io.dapr.workflows.WorkflowTaskOptions
 
WorkflowTaskRetryPolicy - Class in io.dapr.workflows
 
WorkflowTaskRetryPolicy(Integer, Duration, Double, Duration, Duration) - Constructor for class io.dapr.workflows.WorkflowTaskRetryPolicy
Constructor for WorkflowTaskRetryPolicy.
WorkflowTaskRetryPolicy.Builder - Class in io.dapr.workflows
 
A B C D F G I N P R S T V W 
All Classes and Interfaces|All Packages