ZChildWorkflowStubSignalSyntax

zio.temporal.signal.ZChildWorkflowStubSignalSyntax
See theZChildWorkflowStubSignalSyntax companion object

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object ZChildWorkflowStub.type

Members list

Value members

Concrete methods

inline def signal(inline f: Unit): Unit

Sends a signal to the child workflow. Accepts the signal method invocation

Sends a signal to the child workflow. Accepts the signal method invocation

Example:

 val stub: ZChildWorkflowStub.Of[T] = ???

 ZChildWorkflowStub.signal(
   stub.someSignalMethod(someArg)
 )

Value parameters

f

the signal method invocation

Attributes