@@ -607,8 +607,6 @@ type (
607607
608608 // SideEffectOptions are options for executing a side effect.
609609 //
610- // NOTE: Experimental
611- //
612610 // Exposed as: [go.temporal.io/sdk/workflow.SideEffectOptions]
613611 SideEffectOptions struct {
614612 // Summary is a single-line summary of this side effect that will appear in UI/CLI.
@@ -622,8 +620,6 @@ type (
622620
623621 // MutableSideEffectOptions are options for executing a mutable side effect.
624622 //
625- // NOTE: Experimental
626- //
627623 // Exposed as: [go.temporal.io/sdk/workflow.MutableSideEffectOptions]
628624 MutableSideEffectOptions struct {
629625 // Summary is a single-line summary of this side effect that will appear in UI/CLI.
@@ -2099,8 +2095,6 @@ func SideEffect(ctx Context, f func(ctx Context) interface{}) converter.EncodedV
20992095//
21002096// The options parameter allows specifying additional options like a summary that will be displayed in UI/CLI.
21012097//
2102- // NOTE: Experimental
2103- //
21042098// Exposed as: [go.temporal.io/sdk/workflow.SideEffectWithOptions]
21052099func SideEffectWithOptions (ctx Context , options SideEffectOptions , f func (ctx Context ) interface {}) converter.EncodedValue {
21062100 assertNotInReadOnlyState (ctx )
@@ -2163,8 +2157,6 @@ func MutableSideEffect(ctx Context, id string, f func(ctx Context) interface{},
21632157//
21642158// The options parameter allows specifying additional options like a summary that will be displayed in UI/CLI.
21652159//
2166- // NOTE: Experimental
2167- //
21682160// Exposed as: [go.temporal.io/sdk/workflow.MutableSideEffectWithOptions]
21692161func MutableSideEffectWithOptions (ctx Context , id string , options MutableSideEffectOptions , f func (ctx Context ) interface {}, equals func (a , b interface {}) bool ) converter.EncodedValue {
21702162 assertNotInReadOnlyState (ctx )
0 commit comments