@@ -30,17 +30,13 @@ type (
3030
3131 // PollerBehavior is used to configure the behavior of the poller.
3232 //
33- // NOTE: Experimental
34- //
3533 // Exposed as: [go.temporal.io/sdk/worker.PollerBehavior]
3634 PollerBehavior interface {
3735 isPollerBehavior ()
3836 }
3937
4038 // PollerBehaviorAutoscalingOptions is the options for NewPollerBehaviorAutoscaling.
4139 //
42- // NOTE: Experimental
43- //
4440 // Exposed as: [go.temporal.io/sdk/worker.PollerBehaviorAutoscalingOptions]
4541 PollerBehaviorAutoscalingOptions struct {
4642 // InitialNumberOfPollers is the initial number of pollers to start.
6157
6258 // PollerBehaviorSimpleMaximumOptions is the options for NewPollerBehaviorSimpleMaximum.
6359 //
64- // NOTE: Experimental
65- //
6660 // Exposed as: [go.temporal.io/sdk/worker.PollerBehaviorSimpleMaximumOptions]
6761 PollerBehaviorSimpleMaximumOptions struct {
6862 // MaximumNumberOfPollers is the maximum number of pollers the worker is allowed
@@ -479,8 +473,6 @@ func (p *pollerBehaviorAutoscaling) isPollerBehavior() {
479473
480474// NewPollerBehaviorSimpleMaximum creates a PollerBehavior that allows the worker to start up to a maximum number of pollers.
481475//
482- // NOTE: Experimental
483- //
484476// Exposed as: [go.temporal.io/sdk/worker.NewPollerBehaviorSimpleMaximum]
485477func NewPollerBehaviorSimpleMaximum (
486478 options PollerBehaviorSimpleMaximumOptions ,
@@ -496,8 +488,6 @@ func NewPollerBehaviorSimpleMaximum(
496488// NewPollerBehaviorAutoscaling creates a PollerBehavior that allows the worker to scale the number of pollers within a given range.
497489// based on the workflow and feedback from the server.
498490//
499- // NOTE: Experimental
500- //
501491// Exposed as: [go.temporal.io/sdk/worker.NewPollerBehaviorAutoscaling]
502492func NewPollerBehaviorAutoscaling (
503493 options PollerBehaviorAutoscalingOptions ,
0 commit comments