Class: Temporal::Interceptor::Client
- Inherits:
-
Object
- Object
- Temporal::Interceptor::Client
show all
- Defined in:
- lib/temporal/interceptor/client.rb
Defined Under Namespace
Classes: CancelWorkflowInput, DescribeWorkflowInput, QueryWorkflowInput, SignalWorkflowInput, StartWorkflowInput, TerminateWorkflowInput
Instance Method Summary
collapse
Instance Method Details
#cancel_workflow(input) {|input| ... } ⇒ Object
93
94
95
|
# File 'lib/temporal/interceptor/client.rb', line 93
def cancel_workflow(input)
yield(input)
end
|
#describe_workflow(input) {|input| ... } ⇒ Object
81
82
83
|
# File 'lib/temporal/interceptor/client.rb', line 81
def describe_workflow(input)
yield(input)
end
|
#query_workflow(input) {|input| ... } ⇒ Object
85
86
87
|
# File 'lib/temporal/interceptor/client.rb', line 85
def query_workflow(input)
yield(input)
end
|
#signal_workflow(input) {|input| ... } ⇒ Object
89
90
91
|
# File 'lib/temporal/interceptor/client.rb', line 89
def signal_workflow(input)
yield(input)
end
|
#start_workflow(input) {|input| ... } ⇒ Object
77
78
79
|
# File 'lib/temporal/interceptor/client.rb', line 77
def start_workflow(input)
yield(input)
end
|
#terminate_workflow(input) {|input| ... } ⇒ Object
97
98
99
|
# File 'lib/temporal/interceptor/client.rb', line 97
def terminate_workflow(input)
yield(input)
end
|