Copy disabled (too large)
Download .txt
Showing preview only (42,667K chars total). Download the full file to get everything.
Repository: cadence-workflow/cadence
Branch: master
Commit: 43ac35270406
Files: 2794
Total size: 40.2 MB
Directory structure:
gitextract_vsx7kcnp/
├── .dockerignore
├── .envrc
├── .fossa.yml
├── .gen/
│ ├── go/
│ │ ├── admin/
│ │ │ ├── admin.go
│ │ │ ├── adminserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── adminservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── adminserviceserver/
│ │ │ │ └── server.go
│ │ │ ├── adminservicetest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── cadence/
│ │ │ ├── cadence.go
│ │ │ ├── types_yarpc.go
│ │ │ ├── workflowserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── workflowservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── workflowserviceserver/
│ │ │ │ └── server.go
│ │ │ └── workflowservicetest/
│ │ │ └── client.go
│ │ ├── checksum/
│ │ │ ├── checksum.go
│ │ │ └── types_yarpc.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── types_yarpc.go
│ │ ├── health/
│ │ │ ├── health.go
│ │ │ ├── metaclient/
│ │ │ │ └── client.go
│ │ │ ├── metafx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── metaserver/
│ │ │ │ └── server.go
│ │ │ ├── metatest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── history/
│ │ │ ├── history.go
│ │ │ ├── historyserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── historyservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── historyserviceserver/
│ │ │ │ └── server.go
│ │ │ ├── historyservicetest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── indexer/
│ │ │ ├── indexer.go
│ │ │ └── types_yarpc.go
│ │ ├── matching/
│ │ │ ├── matching.go
│ │ │ ├── matchingserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── matchingservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── matchingserviceserver/
│ │ │ │ └── server.go
│ │ │ ├── matchingservicetest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── replicator/
│ │ │ ├── replicator.go
│ │ │ └── types_yarpc.go
│ │ ├── shadower/
│ │ │ ├── shadower.go
│ │ │ └── types_yarpc.go
│ │ ├── shared/
│ │ │ ├── shared.go
│ │ │ └── types_yarpc.go
│ │ └── sqlblobs/
│ │ ├── sqlblobs.go
│ │ └── types_yarpc.go
│ └── proto/
│ ├── history/
│ │ └── v1/
│ │ ├── service.pb.go
│ │ └── service.pb.yarpc.go
│ ├── indexer/
│ │ └── v1/
│ │ ├── messages.pb.go
│ │ └── messages.pb.yarpc.go
│ ├── matching/
│ │ └── v1/
│ │ ├── service.pb.go
│ │ └── service.pb.yarpc.go
│ ├── sharddistributor/
│ │ └── v1/
│ │ ├── canary.pb.go
│ │ ├── canary.pb.yarpc.go
│ │ ├── executor.pb.go
│ │ ├── executor.pb.yarpc.go
│ │ ├── service.pb.go
│ │ └── service.pb.yarpc.go
│ └── shared/
│ └── v1/
│ ├── any.pb.go
│ ├── any.pb.yarpc.go
│ ├── error.pb.go
│ ├── error.pb.yarpc.go
│ ├── history.pb.go
│ ├── history.pb.yarpc.go
│ ├── tasklist.pb.go
│ ├── tasklist.pb.yarpc.go
│ ├── workflow.pb.go
│ └── workflow.pb.yarpc.go
├── .gitar/
│ └── rules/
│ ├── assign-maintainer-reviewer.md
│ ├── issue-linking-required.md
│ └── pr-description-quality.md
├── .gitattributes
├── .github/
│ ├── CODEOWNERS
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── feature_request.md
│ │ └── help_support.md
│ ├── dco.yml
│ ├── pull_request_guidance.md
│ ├── pull_request_template.md
│ └── workflows/
│ ├── breaking_change_pr_template.md
│ ├── breaking_change_reminder.yml
│ ├── ci-checks.yml
│ ├── codecov-on-master.yml
│ ├── codecov-on-pr.yml
│ ├── docker_publish.yml
│ ├── issue-validation.yml
│ ├── replication-simulation.yml
│ └── semantic-pr.yml
├── .gitignore
├── .gitmodules
├── ADOPTERS.md
├── CHANGELOG.md
├── CLAUDE.md
├── CONTRIBUTING.md
├── Dockerfile
├── LICENSE
├── MAINTAINERS.md
├── Makefile
├── NOTICE
├── PROPOSALS.md
├── README.md
├── RELEASES.md
├── bench/
│ ├── README.md
│ ├── lib/
│ │ ├── client.go
│ │ ├── config.go
│ │ ├── config_test.go
│ │ ├── context.go
│ │ ├── metrics.go
│ │ └── types.go
│ ├── load/
│ │ ├── basic/
│ │ │ ├── launchWorkflow.go
│ │ │ └── stressWorkflow.go
│ │ ├── cancellation/
│ │ │ └── workflow.go
│ │ ├── common/
│ │ │ ├── activities.go
│ │ │ ├── constants.go
│ │ │ └── helpers.go
│ │ ├── concurrentexec/
│ │ │ ├── batchWorkflow.go
│ │ │ └── launchWorkflow.go
│ │ ├── cron/
│ │ │ └── workflow.go
│ │ ├── signal/
│ │ │ └── workflow.go
│ │ └── timer/
│ │ ├── launchWorkflow.go
│ │ └── timerWorkflow.go
│ └── worker.go
├── canary/
│ ├── README.md
│ ├── batch.go
│ ├── canary.go
│ ├── cancellation.go
│ ├── client.go
│ ├── common.go
│ ├── concurrentExec.go
│ ├── config.go
│ ├── const.go
│ ├── cron.go
│ ├── crosscluster.go
│ ├── echo.go
│ ├── historyArchival.go
│ ├── localactivity.go
│ ├── metrics.go
│ ├── query.go
│ ├── reset.go
│ ├── retry.go
│ ├── runner.go
│ ├── sanity.go
│ ├── searchAttributes.go
│ ├── signal.go
│ ├── timeout.go
│ ├── visibility.go
│ ├── visibilityArchival.go
│ └── workflow_test.go
├── client/
│ ├── admin/
│ │ ├── interface.go
│ │ └── interface_mock.go
│ ├── clientBean.go
│ ├── clientBean_mock.go
│ ├── clientfactory.go
│ ├── frontend/
│ │ ├── interface.go
│ │ └── interface_mock.go
│ ├── history/
│ │ ├── client.go
│ │ ├── client_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── peer_resolver.go
│ │ ├── peer_resolver_mock.go
│ │ └── peer_resolver_test.go
│ ├── matching/
│ │ ├── client.go
│ │ ├── client_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── isolation_loadbalancer.go
│ │ ├── isolation_loadbalancer_test.go
│ │ ├── loadbalancer.go
│ │ ├── loadbalancer_mock.go
│ │ ├── loadbalancer_test.go
│ │ ├── multi_loadbalancer.go
│ │ ├── multi_loadbalancer_test.go
│ │ ├── partition_config_provider.go
│ │ ├── partition_config_provider_mock.go
│ │ ├── partition_config_provider_test.go
│ │ ├── peer_resolver.go
│ │ ├── peer_resolver_mock.go
│ │ ├── peer_resolver_test.go
│ │ ├── rr_loadbalancer.go
│ │ ├── rr_loadbalancer_test.go
│ │ ├── weighted_loadbalancer.go
│ │ └── weighted_loadbalancer_test.go
│ ├── sharddistributor/
│ │ ├── interface.go
│ │ └── interface_mock.go
│ ├── sharddistributorexecutor/
│ │ ├── executorinterface.go
│ │ └── executorinterface_mock.go
│ ├── templates/
│ │ ├── errorinjectors.tmpl
│ │ ├── grpc.tmpl
│ │ ├── metered.tmpl
│ │ ├── retry.tmpl
│ │ ├── thrift.tmpl
│ │ └── timeout.tmpl
│ └── wrappers/
│ ├── errorinjectors/
│ │ ├── admin_generated.go
│ │ ├── errorinjectors_test.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── sharddistributor_generated.go
│ │ └── sharddistributorexecutor_generated.go
│ ├── grpc/
│ │ ├── admin_generated.go
│ │ ├── constructor.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── sharddistributor_generated.go
│ │ └── sharddistributorexecutor_generated.go
│ ├── metered/
│ │ ├── admin_generated.go
│ │ ├── base.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── metered_test.go
│ │ ├── sharddistributor_generated.go
│ │ └── sharddistributorexecutor_generated.go
│ ├── retryable/
│ │ ├── admin_generated.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── sharddistributor_generated.go
│ │ ├── sharddistributorexecutor_generated.go
│ │ └── wrappers_test.go
│ ├── thrift/
│ │ ├── admin_generated.go
│ │ ├── constructor.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ └── matching_generated.go
│ └── timeout/
│ ├── admin_generated.go
│ ├── frontend_generated.go
│ ├── history_generated.go
│ ├── history_generated_test.go
│ ├── matching_generated.go
│ ├── sharddistributor_generated.go
│ ├── sharddistributorexecutor_generated.go
│ └── timeout.go
├── cmd/
│ ├── bench/
│ │ └── main.go
│ ├── canary/
│ │ └── main.go
│ ├── server/
│ │ ├── README.md
│ │ ├── cadence/
│ │ │ ├── cadence.go
│ │ │ ├── cadence_test.go
│ │ │ ├── fx.go
│ │ │ ├── fx_test.go
│ │ │ ├── server.go
│ │ │ ├── server_test.go
│ │ │ └── testdata/
│ │ │ └── config/
│ │ │ └── development.yaml
│ │ ├── go.mod
│ │ ├── go.sum
│ │ └── main.go
│ ├── sharddistributor-canary/
│ │ ├── main.go
│ │ └── main_test.go
│ └── tools/
│ ├── cassandra/
│ │ └── main.go
│ ├── cli/
│ │ └── main.go
│ ├── copyright/
│ │ └── licensegen.go
│ ├── releaser/
│ │ ├── internal/
│ │ │ ├── console/
│ │ │ │ ├── console.go
│ │ │ │ └── console_test.go
│ │ │ ├── fs/
│ │ │ │ └── fs.go
│ │ │ ├── git/
│ │ │ │ └── git.go
│ │ │ └── release/
│ │ │ ├── release.go
│ │ │ ├── release_mocks_test.go
│ │ │ ├── release_test.go
│ │ │ ├── scenario_test.go
│ │ │ ├── types.go
│ │ │ ├── validate_test.go
│ │ │ └── version_test.go
│ │ └── releaser.go
│ └── sql/
│ └── main.go
├── codecov.yml
├── common/
│ ├── activecluster/
│ │ ├── execution_manager_provider_mock.go
│ │ ├── manager.go
│ │ ├── manager_mock.go
│ │ ├── manager_test.go
│ │ └── types.go
│ ├── archiver/
│ │ ├── README.md
│ │ ├── URI.go
│ │ ├── URI_test.go
│ │ ├── archivalMetadata.go
│ │ ├── archivalMetadata_mock.go
│ │ ├── constants.go
│ │ ├── filestore/
│ │ │ ├── historyArchiver.go
│ │ │ ├── historyArchiver_test.go
│ │ │ ├── queryParser.go
│ │ │ ├── queryParser_mock.go
│ │ │ ├── queryParser_test.go
│ │ │ ├── util.go
│ │ │ ├── util_test.go
│ │ │ ├── visibilityArchiver.go
│ │ │ └── visibilityArchiver_test.go
│ │ ├── gcloud/
│ │ │ ├── README.md
│ │ │ ├── connector/
│ │ │ │ ├── client.go
│ │ │ │ ├── clientDelegate.go
│ │ │ │ ├── client_test.go
│ │ │ │ └── mocks/
│ │ │ │ ├── BucketHandleWrapper.go
│ │ │ │ ├── Client.go
│ │ │ │ ├── GcloudStorageClient.go
│ │ │ │ ├── ObjectHandleWrapper.go
│ │ │ │ ├── ObjectIteratorWrapper.go
│ │ │ │ ├── ReaderWrapper.go
│ │ │ │ └── WriterWrapper.go
│ │ │ ├── go.mod
│ │ │ ├── go.sum
│ │ │ ├── historyArchiver.go
│ │ │ ├── historyArchiver_test.go
│ │ │ ├── init.go
│ │ │ ├── queryParser.go
│ │ │ ├── queryParser_mock.go
│ │ │ ├── util.go
│ │ │ ├── util_test.go
│ │ │ ├── visibilityArchiver.go
│ │ │ └── visibilityArchiver_test.go
│ │ ├── historyIterator.go
│ │ ├── historyIterator_mock.go
│ │ ├── historyIterator_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── options.go
│ │ ├── provider/
│ │ │ ├── init.go
│ │ │ ├── noop_provider.go
│ │ │ ├── provider.go
│ │ │ └── provider_mock.go
│ │ ├── s3store/
│ │ │ ├── README.md
│ │ │ ├── historyArchiver.go
│ │ │ ├── historyArchiver_test.go
│ │ │ ├── mocks/
│ │ │ │ ├── S3API_generate.go
│ │ │ │ └── s3_api_mock.go
│ │ │ ├── queryParser.go
│ │ │ ├── queryParser_mock.go
│ │ │ ├── queryParser_test.go
│ │ │ ├── util.go
│ │ │ ├── visibilityArchiver.go
│ │ │ └── visibilityArchiver_test.go
│ │ ├── util.go
│ │ └── util_test.go
│ ├── asyncworkflow/
│ │ ├── queue/
│ │ │ ├── consumer/
│ │ │ │ ├── default_consumer.go
│ │ │ │ ├── default_consumer_test.go
│ │ │ │ └── errors.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── kafka/
│ │ │ │ ├── config.go
│ │ │ │ ├── config_test.go
│ │ │ │ ├── decoder.go
│ │ │ │ ├── decoder_test.go
│ │ │ │ ├── init.go
│ │ │ │ ├── queue.go
│ │ │ │ └── queue_test.go
│ │ │ ├── provider/
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── provider.go
│ │ │ │ └── provider_test.go
│ │ │ ├── provider.go
│ │ │ └── provider_test.go
│ │ └── queueconfigapi/
│ │ ├── handler.go
│ │ ├── handler_mock.go
│ │ ├── handler_test.go
│ │ └── interface.go
│ ├── authorization/
│ │ ├── README.md
│ │ ├── authority_mock.go
│ │ ├── authorizer.go
│ │ ├── authorizer_test.go
│ │ ├── factory.go
│ │ ├── factory_test.go
│ │ ├── nopAuthorizer.go
│ │ ├── oauthAuthorizer.go
│ │ ├── oauthAuthorizer_test.go
│ │ ├── scram_client.go
│ │ └── test_result
│ ├── backoff/
│ │ ├── cron.go
│ │ ├── cron_test.go
│ │ ├── jitter.go
│ │ ├── jitter_test.go
│ │ ├── retry.go
│ │ ├── retry_test.go
│ │ ├── retrypolicy.go
│ │ └── retrypolicy_test.go
│ ├── blobstore/
│ │ ├── client.go
│ │ ├── client_mock.go
│ │ ├── filestore/
│ │ │ ├── client.go
│ │ │ └── client_test.go
│ │ ├── retryable_client.go
│ │ └── retryable_client_test.go
│ ├── cache/
│ │ ├── ack_cache.go
│ │ ├── ack_cache_test.go
│ │ ├── budget.go
│ │ ├── budget_test.go
│ │ ├── cache.go
│ │ ├── domainCache.go
│ │ ├── domainCacheNoOp.go
│ │ ├── domainCache_mock.go
│ │ ├── domainCache_test.go
│ │ ├── interface_mock.go
│ │ ├── lru.go
│ │ ├── lru_test.go
│ │ ├── metricsScopeCache.go
│ │ ├── metricsScopeCache_test.go
│ │ ├── simple.go
│ │ └── simple_test.go
│ ├── checksum/
│ │ ├── crc.go
│ │ ├── crc_test.go
│ │ ├── ctc_benchmark_test.go
│ │ └── defs.go
│ ├── client/
│ │ ├── versionChecker.go
│ │ ├── versionChecker_mock.go
│ │ └── versionChecker_test.go
│ ├── clock/
│ │ ├── clockfx/
│ │ │ └── clockfx.go
│ │ ├── event_timer_gate.go
│ │ ├── event_timer_gate_test.go
│ │ ├── ratelimiter.go
│ │ ├── ratelimiter_bench_test.go
│ │ ├── ratelimiter_comparison_test.go
│ │ ├── ratelimiter_mock.go
│ │ ├── ratelimiter_test.go
│ │ ├── real_timer_benchmark_test.go
│ │ ├── sustain.go
│ │ ├── sustain_test.go
│ │ ├── testdata/
│ │ │ ├── amd_linux_go1.22.txt
│ │ │ └── m1_mac_go1.21.txt
│ │ ├── time_source.go
│ │ ├── timer_gate.go
│ │ ├── timer_gate_mock.go
│ │ └── timer_gate_test.go
│ ├── cluster/
│ │ ├── metadata.go
│ │ ├── metadata_test.go
│ │ ├── metadata_test_utils.go
│ │ ├── utils.go
│ │ └── utils_test.go
│ ├── codec/
│ │ ├── gob/
│ │ │ ├── gob.go
│ │ │ └── gob_test.go
│ │ ├── interface.go
│ │ ├── interfaces_mock.go
│ │ ├── version0_thriftrw.go
│ │ └── version0_thriftrw_test.go
│ ├── collection/
│ │ ├── channelPriorityQueue.go
│ │ ├── channelPriorityQueue_test.go
│ │ ├── concurrent_priority_queue.go
│ │ ├── concurrent_queue.go
│ │ ├── concurrent_queue_test.go
│ │ ├── concurrent_tx_map.go
│ │ ├── concurrent_tx_map_test.go
│ │ ├── interface.go
│ │ ├── iterator.go
│ │ ├── ordered_map.go
│ │ ├── ordered_map_test.go
│ │ ├── pagingIterator.go
│ │ ├── pagingIterator_test.go
│ │ ├── priority_queue.go
│ │ ├── priority_queue_test.go
│ │ └── util.go
│ ├── config/
│ │ ├── archival.go
│ │ ├── archival_test.go
│ │ ├── authorization.go
│ │ ├── authorization_test.go
│ │ ├── cluster.go
│ │ ├── cluster_test.go
│ │ ├── config.go
│ │ ├── config_test.go
│ │ ├── elasticsearch.go
│ │ ├── elasticsearch_test.go
│ │ ├── fx.go
│ │ ├── kafkaConfig.go
│ │ ├── loader.go
│ │ ├── loader_test.go
│ │ ├── log.go
│ │ ├── log_test.go
│ │ ├── metrics.go
│ │ ├── metrics_test.go
│ │ ├── persistence.go
│ │ ├── pinot.go
│ │ ├── pprof.go
│ │ ├── sasl.go
│ │ └── tls.go
│ ├── constants/
│ │ └── constants.go
│ ├── convert.go
│ ├── convert_test.go
│ ├── ctxutils/
│ │ ├── ctxutils.go
│ │ └── ctxutils_test.go
│ ├── daemon.go
│ ├── definition/
│ │ ├── indexedKeys.go
│ │ ├── indexedKeys_test.go
│ │ ├── resourceDeduplication.go
│ │ ├── resourceDeduplication_test.go
│ │ ├── workflowIdentifier.go
│ │ └── workflowidentifier_test.go
│ ├── domain/
│ │ ├── archivalConfigStateMachine.go
│ │ ├── archivalConfigStateMachine_test.go
│ │ ├── attrValidator.go
│ │ ├── attrValidator_test.go
│ │ ├── audit/
│ │ │ └── audit.go
│ │ ├── clusterattributes.go
│ │ ├── clusterattributes_test.go
│ │ ├── dlq_message_handler.go
│ │ ├── dlq_message_handler_mock.go
│ │ ├── dlq_message_handler_test.go
│ │ ├── errors.go
│ │ ├── failover_watcher.go
│ │ ├── failover_watcher_mock.go
│ │ ├── failover_watcher_test.go
│ │ ├── handler.go
│ │ ├── handler_MasterCluster_test.go
│ │ ├── handler_NotMasterCluster_test.go
│ │ ├── handler_integration_test.go
│ │ ├── handler_mock.go
│ │ ├── handler_test.go
│ │ ├── replicationTaskExecutor.go
│ │ ├── replicationTaskExecutor_integration_test.go
│ │ ├── replicationTaskExecutor_test.go
│ │ ├── replicationTaskHandler_mock.go
│ │ ├── replication_queue.go
│ │ ├── replication_queue_mock.go
│ │ ├── replication_queue_test.go
│ │ ├── transmissionTaskHandler.go
│ │ ├── transmissionTaskHandler_mock.go
│ │ └── transmissionTaskHandler_test.go
│ ├── dynamicconfig/
│ │ ├── clientInterface.go
│ │ ├── clientInterface_mock.go
│ │ ├── config/
│ │ │ └── testConfig.yaml
│ │ ├── config.go
│ │ ├── config_benchmark_test.go
│ │ ├── config_test.go
│ │ ├── configstore/
│ │ │ ├── config/
│ │ │ │ └── config.go
│ │ │ ├── config_store_client.go
│ │ │ ├── config_store_client_test.go
│ │ │ └── configstore_mock.go
│ │ ├── dynamicconfigfx/
│ │ │ ├── fx.go
│ │ │ └── fx_test.go
│ │ ├── dynamicproperties/
│ │ │ ├── config_mock.go
│ │ │ ├── constants.go
│ │ │ ├── constants_test.go
│ │ │ ├── definitions.go
│ │ │ ├── filter.go
│ │ │ └── utils_test.go
│ │ ├── file_based_client.go
│ │ ├── file_based_client_test.go
│ │ ├── inMemoryClient.go
│ │ ├── nopClient.go
│ │ └── quotas/
│ │ ├── dynamicratelimiterfactory.go
│ │ ├── dynamicratelimiterfactory_test.go
│ │ ├── fallbackdynamicratelimiterfactory.go
│ │ └── fallbackdynamicratelimiterfactory_test.go
│ ├── elasticsearch/
│ │ ├── bulk/
│ │ │ ├── backoff.go
│ │ │ ├── bulk.go
│ │ │ ├── bulk_delete_request.go
│ │ │ ├── bulk_index_request.go
│ │ │ ├── bulk_update_request.go
│ │ │ └── mocks/
│ │ │ ├── GenericBulkProcessor.go
│ │ │ └── GenericBulkableRequest.go
│ │ ├── client/
│ │ │ ├── client.go
│ │ │ ├── os2/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_bulk.go
│ │ │ │ ├── client_bulk_test.go
│ │ │ │ └── client_test.go
│ │ │ ├── v6/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_bulk.go
│ │ │ │ ├── client_bulk_test.go
│ │ │ │ └── client_test.go
│ │ │ └── v7/
│ │ │ ├── client.go
│ │ │ ├── client_bulk.go
│ │ │ ├── client_bulk_test.go
│ │ │ └── client_test.go
│ │ ├── client.go
│ │ ├── common.go
│ │ ├── defs.go
│ │ ├── esql/
│ │ │ ├── README.md
│ │ │ ├── aggregation.go
│ │ │ ├── cadenceDevReadme.md
│ │ │ ├── cadenceSpecial.go
│ │ │ ├── cadencesql.go
│ │ │ ├── esql.go
│ │ │ ├── esql_test.go
│ │ │ ├── globals.go
│ │ │ ├── having.go
│ │ │ ├── scriptQuery.go
│ │ │ └── select.go
│ │ ├── interfaces.go
│ │ ├── mocks/
│ │ │ └── GenericClient.go
│ │ ├── page_token.go
│ │ ├── query/
│ │ │ ├── bool_query.go
│ │ │ ├── bool_query_test.go
│ │ │ ├── builder.go
│ │ │ ├── builder_test.go
│ │ │ ├── exists_query.go
│ │ │ ├── exists_query_test.go
│ │ │ ├── match_query.go
│ │ │ ├── match_query_test.go
│ │ │ ├── range_query.go
│ │ │ ├── range_query_test.go
│ │ │ ├── sort.go
│ │ │ └── sort_test.go
│ │ └── validator/
│ │ ├── queryValidator.go
│ │ ├── queryValidator_test.go
│ │ ├── searchAttrValidator.go
│ │ └── searchAttrValidator_test.go
│ ├── errors/
│ │ ├── fake_errors.go
│ │ ├── internal_failure_error.go
│ │ ├── peer_hostname_error.go
│ │ ├── peer_hostname_error_test.go
│ │ └── tasklist_not_owned_by_host_error.go
│ ├── future/
│ │ ├── future.go
│ │ └── future_test.go
│ ├── headers.go
│ ├── isolationgroup/
│ │ ├── context.go
│ │ ├── context_test.go
│ │ ├── defaultisolationgroupstate/
│ │ │ ├── state.go
│ │ │ ├── state_test.go
│ │ │ └── types.go
│ │ ├── interface.go
│ │ ├── isolation_group_mock.go
│ │ └── isolationgroupapi/
│ │ ├── domain-api-handlers.go
│ │ ├── domain-api-handlers_test.go
│ │ ├── global-api-handlers.go
│ │ ├── global-api-handlers_test.go
│ │ ├── handler.go
│ │ ├── interface.go
│ │ ├── isolation_handler_mock.go
│ │ ├── mappers.go
│ │ └── mappers_test.go
│ ├── json_task_token_serializer.go
│ ├── json_task_token_serializer_test.go
│ ├── locks/
│ │ ├── lock.go
│ │ └── lock_test.go
│ ├── log/
│ │ ├── interface.go
│ │ ├── logfx/
│ │ │ ├── fx.go
│ │ │ └── fx_test.go
│ │ ├── logger.go
│ │ ├── logger_bench_test.go
│ │ ├── logger_mock.go
│ │ ├── logger_test.go
│ │ ├── options.go
│ │ ├── panic.go
│ │ ├── replay.go
│ │ ├── tag/
│ │ │ ├── interface.go
│ │ │ ├── tags.go
│ │ │ └── values.go
│ │ ├── testlogger/
│ │ │ ├── fx.go
│ │ │ ├── fx_test.go
│ │ │ ├── testlogger.go
│ │ │ └── testlogger_test.go
│ │ └── throttle.go
│ ├── mapq/
│ │ ├── README.md
│ │ ├── client_impl.go
│ │ ├── client_impl_test.go
│ │ ├── dispatcher/
│ │ │ ├── dispatcher.go
│ │ │ └── dispatcher_test.go
│ │ ├── example_test.go
│ │ ├── mapq.go
│ │ ├── tree/
│ │ │ ├── queue_tree.go
│ │ │ ├── queue_tree_node.go
│ │ │ └── queue_tree_test.go
│ │ └── types/
│ │ ├── client.go
│ │ ├── consumer.go
│ │ ├── consumer_mock.go
│ │ ├── item.go
│ │ ├── item_mock.go
│ │ ├── item_test.go
│ │ ├── offsets.go
│ │ ├── persister.go
│ │ ├── persister_mock.go
│ │ ├── policy.go
│ │ ├── policy_collection.go
│ │ └── policy_collection_test.go
│ ├── membership/
│ │ ├── hashring.go
│ │ ├── hashring_test.go
│ │ ├── hostinfo.go
│ │ ├── hostinfo_test.go
│ │ ├── membershipfx/
│ │ │ ├── membershipfx.go
│ │ │ └── memebershipfx_test.go
│ │ ├── peerprovider_mock.go
│ │ ├── resolver.go
│ │ ├── resolver_mock.go
│ │ ├── resolver_test.go
│ │ ├── sharddistributorresolver.go
│ │ ├── sharddistributorresolver_test.go
│ │ ├── singleprovider.go
│ │ ├── singleprovider_mock.go
│ │ ├── tasklist_differentiator.go
│ │ └── tasklist_differentiator_test.go
│ ├── messaging/
│ │ ├── ackManager.go
│ │ ├── ackManager_test.go
│ │ ├── client_mock.go
│ │ ├── errors.go
│ │ ├── interface.go
│ │ ├── kafka/
│ │ │ ├── client_impl.go
│ │ │ ├── client_impl_test.go
│ │ │ ├── consumer_impl.go
│ │ │ ├── consumer_impl_test.go
│ │ │ ├── partition_ack_manager.go
│ │ │ ├── partition_ack_manager_test.go
│ │ │ ├── producer_impl.go
│ │ │ └── producer_impl_test.go
│ │ ├── metrics_producer.go
│ │ ├── metrics_producer_test.go
│ │ ├── mocks/
│ │ │ └── message_mock.go
│ │ └── noop_producer.go
│ ├── metrics/
│ │ ├── client.go
│ │ ├── config.go
│ │ ├── config_test.go
│ │ ├── context.go
│ │ ├── context_test.go
│ │ ├── defs.go
│ │ ├── defs_test.go
│ │ ├── histograms.go
│ │ ├── histograms_test.go
│ │ ├── interfaces.go
│ │ ├── metricsfx/
│ │ │ ├── metricsfx.go
│ │ │ └── metricsfx_test.go
│ │ ├── mocks/
│ │ │ ├── Client.go
│ │ │ └── Scope.go
│ │ ├── nop.go
│ │ ├── runtime.go
│ │ ├── scope.go
│ │ ├── scope_test.go
│ │ ├── stopwatch.go
│ │ ├── tags.go
│ │ ├── tally/
│ │ │ ├── prometheus/
│ │ │ │ └── buckets.go
│ │ │ └── statsd/
│ │ │ ├── reporter.go
│ │ │ └── reporter_test.go
│ │ └── version.go
│ ├── mocks/
│ │ ├── ExecutionManager.go
│ │ ├── ExecutionManagerFactory.go
│ │ ├── HistoryV2Manager.go
│ │ ├── KafkaProducer.go
│ │ ├── MessagingClient.go
│ │ ├── MetadataManager.go
│ │ ├── ShardManager.go
│ │ ├── TaskManager.go
│ │ └── VisibilityManager.go
│ ├── ndc/
│ │ ├── history_resender.go
│ │ ├── history_resender_mock.go
│ │ └── history_resender_test.go
│ ├── pagination/
│ │ ├── interface.go
│ │ ├── iterator.go
│ │ ├── iterator_test.go
│ │ ├── mocks.go
│ │ ├── writer.go
│ │ ├── writerIterator_test.go
│ │ └── writer_test.go
│ ├── peerprovider/
│ │ ├── plugin.go
│ │ ├── plugin_test.go
│ │ └── ringpopprovider/
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── factory.go
│ │ ├── factory_test.go
│ │ ├── provider.go
│ │ ├── provider_test.go
│ │ └── ringpopfx/
│ │ ├── ringpopfx.go
│ │ └── ringpopfx_test.go
│ ├── persistence/
│ │ ├── client/
│ │ │ ├── bean.go
│ │ │ ├── bean_mock.go
│ │ │ ├── bean_test.go
│ │ │ ├── factory.go
│ │ │ ├── factory_mock.go
│ │ │ └── factory_test.go
│ │ ├── config.go
│ │ ├── config_store_manager.go
│ │ ├── config_store_manager_test.go
│ │ ├── data_manager_interfaces.go
│ │ ├── data_manager_interfaces_mock.go
│ │ ├── data_manager_interfaces_test.go
│ │ ├── data_store_interfaces.go
│ │ ├── data_store_interfaces_mock.go
│ │ ├── data_store_interfaces_test.go
│ │ ├── domain_audit_log.go
│ │ ├── domain_audit_log_test.go
│ │ ├── domain_audit_manager.go
│ │ ├── domain_audit_manager_test.go
│ │ ├── domain_manager.go
│ │ ├── domain_manager_test.go
│ │ ├── domain_replication_config_test.go
│ │ ├── elasticsearch/
│ │ │ ├── decodeBench_test.go
│ │ │ ├── es_visibility_metric_clients.go
│ │ │ ├── es_visibility_store.go
│ │ │ └── es_visibility_store_test.go
│ │ ├── errors.go
│ │ ├── errors_test.go
│ │ ├── execution_manager.go
│ │ ├── execution_manager_test.go
│ │ ├── history_manager.go
│ │ ├── history_manager_test.go
│ │ ├── mappers.go
│ │ ├── mappers_test.go
│ │ ├── metered.go
│ │ ├── metered_test.go
│ │ ├── nosql/
│ │ │ ├── constants.go
│ │ │ ├── factory.go
│ │ │ ├── nosql_config_store.go
│ │ │ ├── nosql_config_store_test.go
│ │ │ ├── nosql_domain_audit_store.go
│ │ │ ├── nosql_domain_audit_store_test.go
│ │ │ ├── nosql_domain_store.go
│ │ │ ├── nosql_domain_store_test.go
│ │ │ ├── nosql_execution_store.go
│ │ │ ├── nosql_execution_store_test.go
│ │ │ ├── nosql_execution_store_util.go
│ │ │ ├── nosql_execution_store_util_test.go
│ │ │ ├── nosql_history_store.go
│ │ │ ├── nosql_history_store_test.go
│ │ │ ├── nosql_queue_store.go
│ │ │ ├── nosql_queue_store_test.go
│ │ │ ├── nosql_shard_store.go
│ │ │ ├── nosql_shard_store_test.go
│ │ │ ├── nosql_store.go
│ │ │ ├── nosql_task_store.go
│ │ │ ├── nosql_task_store_test.go
│ │ │ ├── nosql_test_utils.go
│ │ │ ├── nosql_visibility_store.go
│ │ │ ├── nosql_visibility_store_test.go
│ │ │ ├── nosqlplugin/
│ │ │ │ ├── cassandra/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── cluster_config.go
│ │ │ │ │ ├── cluster_config_cql.go
│ │ │ │ │ ├── constants.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── db_test.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── domain_audit_log_test.go
│ │ │ │ │ ├── domain_cql.go
│ │ │ │ │ ├── domain_test.go
│ │ │ │ │ ├── gocql/
│ │ │ │ │ │ ├── batch.go
│ │ │ │ │ │ ├── batch_test.go
│ │ │ │ │ │ ├── client.go
│ │ │ │ │ │ ├── client_test.go
│ │ │ │ │ │ ├── consistency.go
│ │ │ │ │ │ ├── consistency_test.go
│ │ │ │ │ │ ├── interface.go
│ │ │ │ │ │ ├── interface_mock.go
│ │ │ │ │ │ ├── public/
│ │ │ │ │ │ │ ├── client.go
│ │ │ │ │ │ │ ├── client_test.go
│ │ │ │ │ │ │ └── testdata.go
│ │ │ │ │ │ ├── query.go
│ │ │ │ │ │ └── session.go
│ │ │ │ │ ├── history_events.go
│ │ │ │ │ ├── history_events_cql.go
│ │ │ │ │ ├── history_events_test.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── plugin_test.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── queue_cql.go
│ │ │ │ │ ├── queue_test.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── shard_cql.go
│ │ │ │ │ ├── shard_test.go
│ │ │ │ │ ├── tasks.go
│ │ │ │ │ ├── tasks_cql.go
│ │ │ │ │ ├── tasks_test.go
│ │ │ │ │ ├── testdata/
│ │ │ │ │ │ ├── domain.go
│ │ │ │ │ │ ├── shard.go
│ │ │ │ │ │ ├── visibility.go
│ │ │ │ │ │ └── workflow_execution.go
│ │ │ │ │ ├── visibility.go
│ │ │ │ │ ├── visibility_cql.go
│ │ │ │ │ ├── visibility_test.go
│ │ │ │ │ ├── workflow.go
│ │ │ │ │ ├── workflow_cql.go
│ │ │ │ │ ├── workflow_parsing_utils.go
│ │ │ │ │ ├── workflow_parsing_utils_test.go
│ │ │ │ │ ├── workflow_test.go
│ │ │ │ │ ├── workflow_utils.go
│ │ │ │ │ └── workflow_utils_test.go
│ │ │ │ ├── common.go
│ │ │ │ ├── dynamodb/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configStore.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── visibility.go
│ │ │ │ │ └── workflow.go
│ │ │ │ ├── errors.go
│ │ │ │ ├── interfaces.go
│ │ │ │ ├── interfaces_mock.go
│ │ │ │ ├── mongodb/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configStore.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── error.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── visibility.go
│ │ │ │ │ └── workflow.go
│ │ │ │ └── types.go
│ │ │ ├── plugin.go
│ │ │ ├── sharded_nosql_store.go
│ │ │ ├── sharded_nosql_store_mock.go
│ │ │ ├── sharded_nosql_store_test.go
│ │ │ ├── sharding_policy.go
│ │ │ ├── sharding_policy_test.go
│ │ │ └── utils.go
│ │ ├── operation_mode_validator.go
│ │ ├── operation_mode_validator_test.go
│ │ ├── persistence-tests/
│ │ │ ├── configStorePersistenceTest.go
│ │ │ ├── dbVisibilityPersistenceTest.go
│ │ │ ├── domainAuditPersistenceTest.go
│ │ │ ├── executionManagerTest.go
│ │ │ ├── executionManagerTestForEventsV2.go
│ │ │ ├── historyV2PersistenceTest.go
│ │ │ ├── matchingPersistenceTest.go
│ │ │ ├── metadataPersistenceV2Test.go
│ │ │ ├── persistenceTestBase.go
│ │ │ ├── queuePersistenceTest.go
│ │ │ ├── shardPersistenceTest.go
│ │ │ ├── shared_test.go
│ │ │ ├── testcluster/
│ │ │ │ └── interfaces.go
│ │ │ └── visibilitySamplingClient_test.go
│ │ ├── persistence-utils/
│ │ │ └── history_manager_util.go
│ │ ├── pinot/
│ │ │ ├── pinot_visibility_metric_clients.go
│ │ │ ├── pinot_visibility_metric_clients_test.go
│ │ │ ├── pinot_visibility_store.go
│ │ │ └── pinot_visibility_store_test.go
│ │ ├── queue_manager.go
│ │ ├── retryer.go
│ │ ├── retryer_mock.go
│ │ ├── retryer_test.go
│ │ ├── serialization/
│ │ │ ├── getters.go
│ │ │ ├── getters_fixtures_test.go
│ │ │ ├── getters_test.go
│ │ │ ├── interfaces.go
│ │ │ ├── interfaces_mock.go
│ │ │ ├── parser.go
│ │ │ ├── parser_test.go
│ │ │ ├── persistence_mapper.go
│ │ │ ├── persistence_mapper_test.go
│ │ │ ├── serialization_test_utils.go
│ │ │ ├── snappy_thrift_decoder.go
│ │ │ ├── snappy_thrift_decoder_test.go
│ │ │ ├── snappy_thrift_encoder.go
│ │ │ ├── snappy_thrift_encoder_test.go
│ │ │ ├── task_serializer.go
│ │ │ ├── task_serializer_mock.go
│ │ │ ├── task_serializer_test.go
│ │ │ ├── thrift_decoder.go
│ │ │ ├── thrift_encoder.go
│ │ │ ├── thrift_mapper.go
│ │ │ ├── thrift_mapper_test.go
│ │ │ └── uuid.go
│ │ ├── serializer.go
│ │ ├── serializer_mock.go
│ │ ├── serializer_test.go
│ │ ├── shard_manager.go
│ │ ├── shard_manager_test.go
│ │ ├── sql/
│ │ │ ├── common.go
│ │ │ ├── common_test.go
│ │ │ ├── factory.go
│ │ │ ├── factory_test.go
│ │ │ ├── main_test.go
│ │ │ ├── plugin.go
│ │ │ ├── plugin_test.go
│ │ │ ├── sql_config_store.go
│ │ │ ├── sql_config_store_test.go
│ │ │ ├── sql_domain_audit_store.go
│ │ │ ├── sql_domain_audit_store_test.go
│ │ │ ├── sql_domain_store.go
│ │ │ ├── sql_domain_store_test.go
│ │ │ ├── sql_execution_store.go
│ │ │ ├── sql_execution_store_test.go
│ │ │ ├── sql_execution_store_util.go
│ │ │ ├── sql_execution_store_util_test.go
│ │ │ ├── sql_history_store.go
│ │ │ ├── sql_history_store_test.go
│ │ │ ├── sql_queue_store.go
│ │ │ ├── sql_queue_store_test.go
│ │ │ ├── sql_shard_store.go
│ │ │ ├── sql_shard_store_test.go
│ │ │ ├── sql_task_store.go
│ │ │ ├── sql_task_store_test.go
│ │ │ ├── sql_test_utils.go
│ │ │ ├── sql_visibility_store.go
│ │ │ ├── sqldriver/
│ │ │ │ ├── connections.go
│ │ │ │ ├── driver.go
│ │ │ │ ├── interface.go
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── sharded.go
│ │ │ │ └── singleton.go
│ │ │ ├── sqlplugin/
│ │ │ │ ├── dbSharding.go
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── interfaces.go
│ │ │ │ ├── mysql/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configstore.go
│ │ │ │ │ ├── configstore_sql.go
│ │ │ │ │ ├── configstore_test.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── domain_audit_log_test.go
│ │ │ │ │ ├── dsn_test.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── execution.go
│ │ │ │ │ ├── execution_maps.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── typeconv.go
│ │ │ │ │ └── visibility.go
│ │ │ │ ├── postgres/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configstore.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── domain_audit_log_test.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── execution.go
│ │ │ │ │ ├── execution_maps.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── plugin_test.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── typeconv.go
│ │ │ │ │ └── visibility.go
│ │ │ │ └── sqlite/
│ │ │ │ ├── admin.go
│ │ │ │ ├── db.go
│ │ │ │ ├── db_pool.go
│ │ │ │ ├── domain.go
│ │ │ │ ├── dsn.go
│ │ │ │ ├── dsn_test.go
│ │ │ │ ├── error_checker.go
│ │ │ │ ├── events.go
│ │ │ │ ├── execution.go
│ │ │ │ ├── execution_maps.go
│ │ │ │ ├── plugin.go
│ │ │ │ ├── plugin_test.go
│ │ │ │ ├── queue.go
│ │ │ │ ├── shard.go
│ │ │ │ ├── sqlite_persistence_test.go
│ │ │ │ ├── task.go
│ │ │ │ ├── typeconv.go
│ │ │ │ └── visibility.go
│ │ │ ├── workflow_state_maps.go
│ │ │ ├── workflow_state_non_maps.go
│ │ │ └── workflow_state_non_maps_test.go
│ │ ├── statsComputer.go
│ │ ├── statsComputer_test.go
│ │ ├── task_manager.go
│ │ ├── task_manager_test.go
│ │ ├── tasks.go
│ │ ├── tasks_test.go
│ │ ├── versionHistory.go
│ │ ├── versionHistory_test.go
│ │ ├── visibility_hybrid_manager.go
│ │ ├── visibility_hybrid_manager_test.go
│ │ ├── visibility_manager_interfaces.go
│ │ ├── visibility_manager_interfaces_mock.go
│ │ ├── visibility_single_manager.go
│ │ ├── visibility_single_manager_test.go
│ │ ├── visibility_store_mock.go
│ │ ├── workflowStateCloseStatusValidator.go
│ │ ├── workflowStateCloseStatusValidator_test.go
│ │ ├── workflow_execution_info.go
│ │ ├── workflow_execution_info_test.go
│ │ └── wrappers/
│ │ ├── errorinjectors/
│ │ │ ├── configstore_generated.go
│ │ │ ├── domain_generated.go
│ │ │ ├── execution_generated.go
│ │ │ ├── history_generated.go
│ │ │ ├── injectors_test.go
│ │ │ ├── queue_generated.go
│ │ │ ├── shard_generated.go
│ │ │ ├── task_generated.go
│ │ │ ├── utils.go
│ │ │ └── visibility_generated.go
│ │ ├── metered/
│ │ │ ├── base.go
│ │ │ ├── configstore_generated.go
│ │ │ ├── domain_generated.go
│ │ │ ├── execution_generated.go
│ │ │ ├── history_generated.go
│ │ │ ├── metered_test.go
│ │ │ ├── queue_generated.go
│ │ │ ├── shard_generated.go
│ │ │ ├── task_generated.go
│ │ │ └── visibility_generated.go
│ │ ├── ratelimited/
│ │ │ ├── configstore_generated.go
│ │ │ ├── domain_generated.go
│ │ │ ├── errors.go
│ │ │ ├── execution_generated.go
│ │ │ ├── history_generated.go
│ │ │ ├── queue_generated.go
│ │ │ ├── shard_generated.go
│ │ │ ├── task_generated.go
│ │ │ ├── utils_test.go
│ │ │ ├── visibility_generated.go
│ │ │ └── wrappers_test.go
│ │ ├── sampled/
│ │ │ ├── tokenbucketfactory.go
│ │ │ ├── tokenbucketfactory_test.go
│ │ │ ├── visibility_manager.go
│ │ │ └── visibility_manager_test.go
│ │ └── templates/
│ │ ├── errorinjector.tmpl
│ │ ├── metered.tmpl
│ │ ├── metered_execution.tmpl
│ │ └── ratelimited.tmpl
│ ├── pinot/
│ │ ├── generic_client_mock.go
│ │ ├── interfaces.go
│ │ ├── page_token.go
│ │ ├── page_token_test.go
│ │ ├── pinotQueryValidator.go
│ │ ├── pinotQueryValidator_test.go
│ │ ├── pinot_client.go
│ │ ├── pinot_client_test.go
│ │ ├── response_utility.go
│ │ └── response_utility_test.go
│ ├── pprof.go
│ ├── pprof_mock.go
│ ├── quotas/
│ │ ├── caller_bypass.go
│ │ ├── caller_bypass_test.go
│ │ ├── collection.go
│ │ ├── collection_mock.go
│ │ ├── dynamicratelimiter.go
│ │ ├── global/
│ │ │ ├── algorithm/
│ │ │ │ ├── requestweighted.go
│ │ │ │ ├── requestweighted_fuzz_test.go
│ │ │ │ ├── requestweighted_test.go
│ │ │ │ └── testdata/
│ │ │ │ └── fuzz/
│ │ │ │ ├── FuzzMissedUpdate/
│ │ │ │ │ └── 264c784f7bafbf5f
│ │ │ │ └── FuzzMultiUpdate/
│ │ │ │ ├── 00649674e28cdc32
│ │ │ │ ├── 0bb6b094a7f63d70
│ │ │ │ ├── 356e28f5914a0f16
│ │ │ │ ├── 449388c309f148fd
│ │ │ │ ├── 582528ddfad69eb5
│ │ │ │ ├── 754d7f941db60f1d
│ │ │ │ ├── 84c7bfae679f54a7
│ │ │ │ ├── 9abdd061069970e6
│ │ │ │ ├── c50ed3d1a22fe00d
│ │ │ │ └── f1fafad245481a29
│ │ │ ├── collection/
│ │ │ │ ├── collection.go
│ │ │ │ ├── collection_fuzz_test.go
│ │ │ │ ├── collection_test.go
│ │ │ │ ├── internal/
│ │ │ │ │ ├── atomicmap.go
│ │ │ │ │ ├── atomicmap_external_test.go
│ │ │ │ │ ├── counted.go
│ │ │ │ │ ├── counted_test.go
│ │ │ │ │ ├── fallback.go
│ │ │ │ │ ├── fallback_test.go
│ │ │ │ │ ├── shadowed.go
│ │ │ │ │ └── shadowed_test.go
│ │ │ │ └── testdata/
│ │ │ │ └── fuzz/
│ │ │ │ └── FuzzBoostRPS/
│ │ │ │ ├── 1b0805e3169f0ae7
│ │ │ │ └── 216cd14a71215fe2
│ │ │ ├── doc.go
│ │ │ ├── rpc/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_mock.go
│ │ │ │ ├── client_test.go
│ │ │ │ ├── error.go
│ │ │ │ ├── mapping.go
│ │ │ │ └── mapping_test.go
│ │ │ └── shared/
│ │ │ ├── keymapper.go
│ │ │ ├── sanity.go
│ │ │ └── sanity_test.go
│ │ ├── interfaces.go
│ │ ├── limiter_mock.go
│ │ ├── limiter_test.go
│ │ ├── limiterfactory_mock.go
│ │ ├── multistageratelimiter.go
│ │ ├── permember/
│ │ │ ├── permember.go
│ │ │ └── permember_test.go
│ │ └── policy_mock.go
│ ├── rangeiter/
│ │ ├── dynamic_config_linear_iterator.go
│ │ ├── dynamic_config_linear_iterator_test.go
│ │ ├── iterator.go
│ │ ├── linear_iterator.go
│ │ └── linear_iterator_test.go
│ ├── reconciliation/
│ │ ├── constants.go
│ │ ├── entity/
│ │ │ ├── types.go
│ │ │ └── types_test.go
│ │ ├── fetcher/
│ │ │ ├── concrete.go
│ │ │ ├── concrete_test.go
│ │ │ ├── current.go
│ │ │ ├── current_test.go
│ │ │ ├── timer.go
│ │ │ ├── timer_test.go
│ │ │ └── types.go
│ │ ├── invariant/
│ │ │ ├── collection_enumer_generated.go
│ │ │ ├── concrete_execution_exists.go
│ │ │ ├── concrete_execution_exists_test.go
│ │ │ ├── history_exists.go
│ │ │ ├── history_exists_test.go
│ │ │ ├── inactive_domain_exists.go
│ │ │ ├── inactive_domain_exists_test.go
│ │ │ ├── invariant_manager.go
│ │ │ ├── invariant_manager_test.go
│ │ │ ├── invariant_test_utils.go
│ │ │ ├── mocks.go
│ │ │ ├── open_current_execution.go
│ │ │ ├── open_current_execution_test.go
│ │ │ ├── stale_workflow.go
│ │ │ ├── stale_workflow_test.go
│ │ │ ├── timer_invalid.go
│ │ │ ├── timer_invalid_test.go
│ │ │ ├── types.go
│ │ │ ├── util.go
│ │ │ └── util_test.go
│ │ └── store/
│ │ ├── blobstoreIterator.go
│ │ ├── blobstoreWriter.go
│ │ ├── blobstorewriter_test.go
│ │ ├── mocks.go
│ │ ├── types.go
│ │ └── writerIterator_test.go
│ ├── resource/
│ │ ├── params.go
│ │ ├── resource_impl.go
│ │ ├── resource_impl_test.go
│ │ ├── resource_mock.go
│ │ ├── resource_test_utils.go
│ │ └── types.go
│ ├── rpc/
│ │ ├── direct_peer_chooser.go
│ │ ├── direct_peer_chooser_test.go
│ │ ├── dns_updater.go
│ │ ├── dns_updater_test.go
│ │ ├── factory.go
│ │ ├── factory_mock.go
│ │ ├── factory_test.go
│ │ ├── localip.go
│ │ ├── localip_test.go
│ │ ├── middleware.go
│ │ ├── middleware_test.go
│ │ ├── outbounds.go
│ │ ├── outbounds_mock.go
│ │ ├── outbounds_test.go
│ │ ├── params.go
│ │ ├── params_test.go
│ │ ├── peer_chooser.go
│ │ ├── peer_chooser_mock.go
│ │ ├── peer_chooser_test.go
│ │ ├── rpcfx/
│ │ │ └── rpcfx.go
│ │ └── types.go
│ ├── rsa.go
│ ├── scripting/
│ │ ├── exec.go
│ │ └── exec_test.go
│ ├── service/
│ │ ├── config.go
│ │ ├── metrics.go
│ │ ├── name.go
│ │ └── name_test.go
│ ├── stats/
│ │ ├── interface_mock.go
│ │ ├── interfaces.go
│ │ ├── stats.go
│ │ ├── stats_benchmark_test.go
│ │ └── stats_test.go
│ ├── syncmap/
│ │ ├── syncmap.go
│ │ └── syncmap_test.go
│ ├── task/
│ │ ├── fifo_task_scheduler.go
│ │ ├── fifo_task_scheduler_options.go
│ │ ├── fifo_task_scheduler_test.go
│ │ ├── hierarchical_weighted_round_robin_task_pool.go
│ │ ├── hierarchical_weighted_round_robin_task_pool_test.go
│ │ ├── hierarchical_weighted_round_robin_task_scheduler.go
│ │ ├── hierarchical_weighted_round_robin_task_scheduler_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── iwrr_node.go
│ │ ├── iwrr_node_test.go
│ │ ├── iwrr_schedule.go
│ │ ├── iwrr_schedule_test.go
│ │ ├── parallel_task_processor.go
│ │ ├── parallel_task_processor_test.go
│ │ ├── scheduler_options.go
│ │ ├── scheduler_options_test.go
│ │ ├── sequential_task_processor.go
│ │ ├── sequential_task_processor_test.go
│ │ ├── ttl_channel.go
│ │ ├── ttl_channel_test.go
│ │ ├── weighted_channel_pool.go
│ │ ├── weighted_channel_pool_test.go
│ │ ├── weighted_round_robin_task_scheduler.go
│ │ ├── weighted_round_robin_task_scheduler_options.go
│ │ └── weighted_round_robin_task_scheduler_test.go
│ ├── taskTokenSerializerInterfaces.go
│ ├── taskTokenSerializerInterfaces_mock.go
│ ├── taskvalidator/
│ │ ├── validateworkflow.go
│ │ └── validateworkflow_test.go
│ ├── testing/
│ │ ├── allisset.go
│ │ ├── allisset_test.go
│ │ ├── event_generator.go
│ │ ├── generator_interface.go
│ │ ├── history_event_test.go
│ │ ├── history_event_util.go
│ │ └── testdatagen/
│ │ ├── fuzzer.go
│ │ └── idlfuzzedtestdata/
│ │ └── history.go
│ ├── tokenbucket/
│ │ ├── tb.go
│ │ └── tb_test.go
│ ├── types/
│ │ ├── admin.go
│ │ ├── admin_test.go
│ │ ├── caller.go
│ │ ├── caller_test.go
│ │ ├── configStore.go
│ │ ├── configStore_test.go
│ │ ├── enums.go
│ │ ├── enums_test.go
│ │ ├── errors.go
│ │ ├── errors_test.go
│ │ ├── health.go
│ │ ├── history.go
│ │ ├── history_test.go
│ │ ├── mapper/
│ │ │ ├── errorutils/
│ │ │ │ ├── convert.go
│ │ │ │ └── convert_test.go
│ │ │ ├── proto/
│ │ │ │ ├── admin.go
│ │ │ │ ├── admin_test.go
│ │ │ │ ├── api.go
│ │ │ │ ├── api_test.go
│ │ │ │ ├── enum_test.go
│ │ │ │ ├── errors.go
│ │ │ │ ├── errors_test.go
│ │ │ │ ├── helpers.go
│ │ │ │ ├── helpers_test.go
│ │ │ │ ├── history.go
│ │ │ │ ├── history_test.go
│ │ │ │ ├── matching.go
│ │ │ │ ├── matching_test.go
│ │ │ │ ├── schedule.go
│ │ │ │ ├── schedule_test.go
│ │ │ │ ├── sharddistributor.go
│ │ │ │ ├── sharddistributor_test.go
│ │ │ │ ├── shared.go
│ │ │ │ └── shared_test.go
│ │ │ ├── testutils/
│ │ │ │ ├── common_fuzzers.go
│ │ │ │ ├── fuzz_mapper.go
│ │ │ │ ├── fuzz_mapper_test.go
│ │ │ │ └── fuzz_test_utils.go
│ │ │ └── thrift/
│ │ │ ├── admin.go
│ │ │ ├── admin_test.go
│ │ │ ├── any.go
│ │ │ ├── any_test.go
│ │ │ ├── configStore.go
│ │ │ ├── config_store_test.go
│ │ │ ├── errors.go
│ │ │ ├── errors_test.go
│ │ │ ├── health.go
│ │ │ ├── helpers.go
│ │ │ ├── helpers_test.go
│ │ │ ├── history.go
│ │ │ ├── history_test.go
│ │ │ ├── matching.go
│ │ │ ├── matching_test.go
│ │ │ ├── predicate.go
│ │ │ ├── predicate_test.go
│ │ │ ├── replicator.go
│ │ │ ├── replicator_test.go
│ │ │ ├── shared.go
│ │ │ └── shared_test.go
│ │ ├── matching.go
│ │ ├── matching_test.go
│ │ ├── predicate.go
│ │ ├── replicator.go
│ │ ├── replicator_test.go
│ │ ├── schedule.go
│ │ ├── schedule_service.go
│ │ ├── schedule_service_test.go
│ │ ├── schedule_test.go
│ │ ├── sharddistributor.go
│ │ ├── sharddistributor_statuses_enumer_generated.go
│ │ ├── sharddistributor_test.go
│ │ ├── shared.go
│ │ ├── shared_test.go
│ │ ├── test_util.go
│ │ └── testdata/
│ │ ├── common.go
│ │ ├── config_store.go
│ │ ├── decision.go
│ │ ├── domain.go
│ │ ├── enum.go
│ │ ├── error.go
│ │ ├── history.go
│ │ ├── queue.go
│ │ ├── replication.go
│ │ ├── schedule.go
│ │ ├── service_admin.go
│ │ ├── service_frontend.go
│ │ ├── service_history.go
│ │ ├── service_matching.go
│ │ └── service_sharddistributor.go
│ ├── util/
│ │ ├── file_util.go
│ │ └── file_util_test.go
│ ├── util.go
│ ├── util_test.go
│ └── visibility/
│ ├── validate_search_attribute_key.go
│ └── validate_search_attribute_key_test.go
├── config/
│ ├── base.yaml
│ ├── bench/
│ │ ├── base.yaml
│ │ ├── basic.json
│ │ ├── basic_panic.json
│ │ ├── cancellation.json
│ │ ├── concurrent_execution.json
│ │ ├── cron.json
│ │ ├── development.yaml
│ │ ├── signal.json
│ │ └── timer.json
│ ├── canary/
│ │ ├── base.yaml
│ │ └── development.yaml
│ ├── credentials/
│ │ ├── client.key
│ │ ├── keytest
│ │ └── keytest.pub
│ ├── development.yaml
│ ├── development_async_wf_kafka_queue.yaml
│ ├── development_es_opensearch.yaml
│ ├── development_es_opensearch_migration.yaml
│ ├── development_es_v6.yaml
│ ├── development_es_v7.yaml
│ ├── development_generic_oauth.yaml
│ ├── development_http_api.yaml
│ ├── development_instance2.yaml
│ ├── development_multiple_cassandra.yaml
│ ├── development_multiple_mysql.yaml
│ ├── development_mysql.yaml
│ ├── development_oauth.yaml
│ ├── development_pinot.yaml
│ ├── development_postgres.yaml
│ ├── development_prometheus.yaml
│ ├── development_scylla.yaml
│ ├── development_sqlite.yaml
│ ├── development_tls.yaml
│ ├── development_xdc_cluster0.yaml
│ ├── development_xdc_cluster1.yaml
│ ├── development_xdc_cluster2.yaml
│ └── dynamicconfig/
│ ├── README.md
│ ├── development.yaml
│ ├── development_es.yaml
│ ├── development_pinot.yaml
│ ├── replication_simulation_activeactive.yml
│ ├── replication_simulation_activeactive_child.yml
│ ├── replication_simulation_activeactive_cron.yml
│ ├── replication_simulation_activeactive_invalid_cluster_attribute.yml
│ ├── replication_simulation_activeactive_regional_failover.yml
│ ├── replication_simulation_activeactive_regional_failover_start_same_wfid.yml
│ ├── replication_simulation_activeactive_regional_failover_start_same_wfid_2.yml
│ ├── replication_simulation_activeactive_same_wfid.yml
│ ├── replication_simulation_activeactive_same_wfid_signalwithstart.yml
│ ├── replication_simulation_activeactive_same_wfid_signalwithstart_delayed.yml
│ ├── replication_simulation_activeactive_signalwithstart_terminateifrunning.yml
│ ├── replication_simulation_activeactive_start_terminateifrunning.yml
│ ├── replication_simulation_activepassive_to_activeactive.yml
│ ├── replication_simulation_budget_manager.yml
│ ├── replication_simulation_clusterredirection.yml
│ ├── replication_simulation_default.yml
│ └── replication_simulation_reset.yml
├── docker/
│ ├── README.md
│ ├── config/
│ │ ├── bench/
│ │ │ └── development.yaml
│ │ └── canary/
│ │ └── development.yaml
│ ├── config_template.yaml
│ ├── dev/
│ │ ├── cassandra-esv7-kafka.yml
│ │ ├── cassandra-opensearch-kafka-migration.yml
│ │ ├── cassandra-opensearch-kafka.yml
│ │ ├── cassandra-pinot-kafka.yml
│ │ ├── cassandra-testing/
│ │ │ └── docker-compose-local-caas-cluster.yaml
│ │ ├── cassandra.yml
│ │ ├── mongo-esv7-kafka.yml
│ │ ├── mysql-esv7-kafka.yml
│ │ ├── mysql.yml
│ │ └── postgres.yml
│ ├── docker-compose-archival-filestore.yml
│ ├── docker-compose-async-wf-kafka-v4.yml
│ ├── docker-compose-async-wf-kafka.yml
│ ├── docker-compose-bench.yml
│ ├── docker-compose-canary.yml
│ ├── docker-compose-es-v7.yml
│ ├── docker-compose-es.yml
│ ├── docker-compose-http-api.yml
│ ├── docker-compose-multiclusters-cass-mysql-es.yaml
│ ├── docker-compose-multiclusters-es.yml
│ ├── docker-compose-multiclusters.yml
│ ├── docker-compose-mysql.yml
│ ├── docker-compose-oauth.yml
│ ├── docker-compose-opensearch.yml
│ ├── docker-compose-pinot.yml
│ ├── docker-compose-postgres.yml
│ ├── docker-compose-scylla.yml
│ ├── docker-compose-statsd.yml
│ ├── docker-compose.yml
│ ├── domain/
│ │ ├── cassandra.cql
│ │ ├── mysql.sql
│ │ └── postgres.sql
│ ├── entrypoint.sh
│ ├── github_actions/
│ │ ├── Dockerfile
│ │ ├── README.md
│ │ ├── docker-compose-cassandra-lwt.yml
│ │ ├── docker-compose-es7.yml
│ │ ├── docker-compose-local-async-wf.yml
│ │ ├── docker-compose-local-es7.yml
│ │ ├── docker-compose-local-history-simulation.yml
│ │ ├── docker-compose-local-matching-simulation.yml
│ │ ├── docker-compose-local-pinot.yml
│ │ ├── docker-compose-local-replication-simulation.yml
│ │ ├── docker-compose-local.yml
│ │ ├── docker-compose-opensearch2.yml
│ │ ├── docker-compose-pinot.yml
│ │ ├── docker-compose.yml
│ │ ├── grafana/
│ │ │ ├── grafana.ini
│ │ │ └── provisioning/
│ │ │ ├── dashboards/
│ │ │ │ ├── cadence-archival.json
│ │ │ │ ├── cadence-client-overall.json
│ │ │ │ ├── cadence-frontend.json
│ │ │ │ ├── cadence-history.json
│ │ │ │ ├── cadence-matching.json
│ │ │ │ ├── cadence-persistence.json
│ │ │ │ ├── cadence-server.json
│ │ │ │ └── default.yaml
│ │ │ └── datasources/
│ │ │ └── default.yaml
│ │ └── prometheus/
│ │ ├── .gitignore
│ │ ├── matching_simulation_prometheus.yml
│ │ └── replication_simulation_prometheus.yml
│ ├── grafana/
│ │ ├── grafana.ini
│ │ └── provisioning/
│ │ ├── dashboards/
│ │ │ ├── cadence-archival.json
│ │ │ ├── cadence-client-overall.json
│ │ │ ├── cadence-frontend.json
│ │ │ ├── cadence-history.json
│ │ │ ├── cadence-matching.json
│ │ │ ├── cadence-persistence.json
│ │ │ ├── cadence-server.json
│ │ │ └── default.yaml
│ │ └── datasources/
│ │ └── default.yaml
│ ├── prometheus/
│ │ └── prometheus.yml
│ ├── prometheus_multiclusters/
│ │ └── prometheus.yml
│ ├── setup-multiclusters-schema.sh
│ ├── start-cadence.sh
│ └── start.sh
├── docs/
│ ├── cassandra-executions-table.md
│ ├── design/
│ │ ├── 1533-host-specific-tasklist.md
│ │ ├── 2215-synchronous-request-reply.md
│ │ ├── 2290-cadence-ndc.md
│ │ ├── active-active/
│ │ │ └── active-active.md
│ │ ├── domain-updates/
│ │ │ └── fencing-tokens.md
│ │ ├── graceful-domain-failover/
│ │ │ └── 3051-graceful-domain-failover.md
│ │ ├── history-queue-v2/
│ │ │ └── history-queue-v2.md
│ │ ├── index.md
│ │ └── workflow-shadowing/
│ │ └── 2547-workflow-shadowing.md
│ ├── flow.md
│ ├── howtos/
│ │ ├── async-api.md
│ │ ├── cassandra-fql.md
│ │ └── setup-cadence-locally-with-replication.md
│ ├── migration/
│ │ ├── cassandra-shard-info.md
│ │ └── tasklist-partition-config.md
│ ├── non-deterministic-error.md
│ ├── persistence.md
│ ├── roadmap.md
│ ├── scalable_tasklist.md
│ ├── setup/
│ │ ├── MYSQL_SETUP.md
│ │ └── POSTGRES_SETUP.md
│ ├── toc.md
│ └── visibility-on-elasticsearch.md
├── environment/
│ ├── env.go
│ └── env_test.go
├── go.mod
├── go.sum
├── go.work
├── go.work.sum
├── host/
│ ├── activity_test.go
│ ├── archival_test.go
│ ├── async_wf_test.go
│ ├── cancel_workflow_test.go
│ ├── cassandra_lwt_test.go
│ ├── cli/
│ │ ├── cassandra/
│ │ │ ├── cassandra_tool_cqlclient_test.go
│ │ │ ├── cassandra_tool_setupTask_test.go
│ │ │ ├── cassandra_tool_updateTask_test.go
│ │ │ ├── cassandra_tool_version_test.go
│ │ │ └── utils.go
│ │ └── sql/
│ │ ├── cli_test.go
│ │ ├── connTest.go
│ │ ├── handlerTest.go
│ │ ├── setuptaskTest.go
│ │ ├── updatetaskTest.go
│ │ ├── utils.go
│ │ └── versionTest.go
│ ├── client.go
│ ├── client_integration_test.go
│ ├── continue_as_new_test.go
│ ├── decision_test.go
│ ├── decision_timeout_test.go
│ ├── dynamicconfig.go
│ ├── elastic_search_test.go
│ ├── esutils/
│ │ ├── client_os2.go
│ │ ├── client_v6.go
│ │ ├── client_v7.go
│ │ └── interfaces.go
│ ├── flag.go
│ ├── integration_test.go
│ ├── integration_test_cron.go
│ ├── integrationbase.go
│ ├── membership_hashring.go
│ ├── membership_resolver.go
│ ├── ndc/
│ │ ├── integration_test.go
│ │ ├── replication_integration_test.go
│ │ └── test_suites.go
│ ├── onebox.go
│ ├── persistence/
│ │ ├── cassandra/
│ │ │ └── cassandra_persistence_test.go
│ │ ├── dynamodb/
│ │ │ └── dynamodb_persistence_test.go
│ │ ├── mongodb/
│ │ │ └── mongodb_persistence_test.go
│ │ ├── mysql/
│ │ │ └── mysql_persistence_test.go
│ │ └── postgres/
│ │ └── postgres_persistence_test.go
│ ├── pinot_test.go
│ ├── pinotutils/
│ │ └── pinotClient.go
│ ├── query_workflow_test.go
│ ├── reset_workflow_test.go
│ ├── retry_policy_workflow_test.go
│ ├── service.go
│ ├── signal_workflow_test.go
│ ├── size_limit_test.go
│ ├── task_list_isolation_test.go
│ ├── task_list_test.go
│ ├── taskpoller.go
│ ├── test_suites.go
│ ├── testcluster.go
│ ├── testdata/
│ │ ├── clientintegrationtestcluster.yaml
│ │ ├── dynamicconfig/
│ │ │ ├── integration_queuev2_test.yaml
│ │ │ ├── integration_queuev2_with_alert_test.yaml
│ │ │ └── integration_test.yaml
│ │ ├── es_os2_index_template.json
│ │ ├── es_v6_index_template.json
│ │ ├── es_v7_index_template.json
│ │ ├── integration_async_wf_with_kafka_cluster.yaml
│ │ ├── integration_decision_timeout_cluster.yaml
│ │ ├── integration_elasticsearch_os2_cluster.yaml
│ │ ├── integration_elasticsearch_v6_cluster.yaml
│ │ ├── integration_elasticsearch_v7_cluster.yaml
│ │ ├── integration_pinot_cluster.yaml
│ │ ├── integration_queuev2_cluster.yaml
│ │ ├── integration_queuev2_with_alert_cluster.yaml
│ │ ├── integration_sizelimit_cluster.yaml
│ │ ├── integration_test_cluster.yaml
│ │ ├── integration_wfidratelimit_cluster.yaml
│ │ ├── ndc_integration_test_clusters.yaml
│ │ ├── task_list_test_cluster.yaml
│ │ ├── xdc_integration_es_clusters.yaml
│ │ └── xdc_integration_test_clusters.yaml
│ ├── workflowidratelimit_test.go
│ ├── workflowsidinternalratelimit_test.go
│ └── xdc/
│ └── elasticsearch_test.go
├── internal/
│ └── tools/
│ ├── go.mod
│ ├── go.sum
│ ├── go.work
│ ├── go.work.sum
│ └── tools.go
├── proto/
│ ├── buf.yaml
│ ├── internal/
│ │ └── uber/
│ │ └── cadence/
│ │ ├── history/
│ │ │ └── v1/
│ │ │ └── service.proto
│ │ ├── indexer/
│ │ │ └── v1/
│ │ │ └── messages.proto
│ │ ├── matching/
│ │ │ └── v1/
│ │ │ └── service.proto
│ │ ├── sharddistributor/
│ │ │ └── v1/
│ │ │ ├── canary.proto
│ │ │ ├── executor.proto
│ │ │ └── service.proto
│ │ └── shared/
│ │ └── v1/
│ │ ├── any.proto
│ │ ├── error.proto
│ │ ├── history.proto
│ │ ├── tasklist.proto
│ │ └── workflow.proto
│ └── persistenceblobs/
│ └── v1/
│ ├── gogo.proto
│ └── message.proto
├── revive.toml
├── schema/
│ ├── cassandra/
│ │ ├── README.md
│ │ ├── cadence/
│ │ │ ├── keyspace.cql
│ │ │ ├── schema.cql
│ │ │ └── versioned/
│ │ │ ├── s0.0-0.23/
│ │ │ │ ├── data_0_23.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── schema_0_23.cql
│ │ │ ├── v0.1/
│ │ │ │ ├── base.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.10/
│ │ │ │ ├── event_batch_version.cql
│ │ │ │ ├── execution_last_write_version_and_workflow_state.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.11/
│ │ │ │ ├── event_encoding.cql
│ │ │ │ ├── history_size.cql
│ │ │ │ ├── manifest.json
│ │ │ │ ├── sync_activity.cql
│ │ │ │ └── workflow_retry.cql
│ │ │ ├── v0.12/
│ │ │ │ ├── add_archival_config.cql
│ │ │ │ ├── cron.cql
│ │ │ │ ├── events_v2.cql
│ │ │ │ ├── manifest.json
│ │ │ │ ├── signal_count.cql
│ │ │ │ └── system_domain_bootstrap.cql
│ │ │ ├── v0.13/
│ │ │ │ ├── events_cache.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── reset.cql
│ │ │ ├── v0.14/
│ │ │ │ ├── last_event_task_id.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── task_list.cql
│ │ │ ├── v0.15/
│ │ │ │ ├── auto_reset.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.16/
│ │ │ │ ├── decision_scheduled_timestamp.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.17/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── search_attr.cql
│ │ │ │ └── task_created_time.cql
│ │ │ ├── v0.18/
│ │ │ │ ├── activity_last_failure_info.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.19/
│ │ │ │ ├── archival_domain_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.2/
│ │ │ │ ├── add_buffered_events.cql
│ │ │ │ ├── add_sticky_tasklist.cql
│ │ │ │ ├── add_wf_timeout.cql
│ │ │ │ ├── fail_decision_mutable_state.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.20/
│ │ │ │ ├── manifest.json
│ │ │ │ └── memo.cql
│ │ │ ├── v0.21/
│ │ │ │ ├── decision_original_scheduled_timestamp.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.22/
│ │ │ │ ├── activity_last_failure_details.cql
│ │ │ │ ├── cluster_replication_level.cql
│ │ │ │ ├── manifest.json
│ │ │ │ ├── parent_close_policy.cql
│ │ │ │ └── request_cancel_signal_batch_event_id.cql
│ │ │ ├── v0.23/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── queue.cql
│ │ │ │ ├── queue_metadata.cql
│ │ │ │ ├── system_domain.cql
│ │ │ │ └── version_histories.cql
│ │ │ ├── v0.24/
│ │ │ │ ├── checksum.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.25/
│ │ │ │ ├── manifest.json
│ │ │ │ └── replication_dlq.cql
│ │ │ ├── v0.26/
│ │ │ │ ├── domain_dlq_id.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.27/
│ │ │ │ ├── domain_failover_end_time.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.28/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── previous_failover_version.cql
│ │ │ │ ├── replication_task_creation_time.cql
│ │ │ │ └── shard_info_marker.cql
│ │ │ ├── v0.29/
│ │ │ │ ├── manifest.json
│ │ │ │ └── processing_queue_states.cql
│ │ │ ├── v0.3/
│ │ │ │ ├── add_client_version.cql
│ │ │ │ ├── add_last_first_event_id.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.30/
│ │ │ │ ├── domain_last_updated_time.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.31/
│ │ │ │ ├── cross_cluster_queue.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.32/
│ │ │ │ ├── config_store.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.33/
│ │ │ │ ├── child_info_domain_id.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── target_domain_ids.cql
│ │ │ ├── v0.34/
│ │ │ │ ├── manifest.json
│ │ │ │ └── workflow_execution_first_run_id.cql
│ │ │ ├── v0.35/
│ │ │ │ ├── manifest.json
│ │ │ │ └── partition_config.cql
│ │ │ ├── v0.36/
│ │ │ │ ├── isolation_groups.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.37/
│ │ │ │ ├── async_workflow_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.38/
│ │ │ │ ├── manifest.json
│ │ │ │ └── task_list_partition_config.cql
│ │ │ ├── v0.39/
│ │ │ │ ├── manifest.json
│ │ │ │ └── timestamps.cql
│ │ │ ├── v0.4/
│ │ │ │ ├── add_signal_decision.cql
│ │ │ │ ├── add_tasklist_kind.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.40/
│ │ │ │ ├── isolation_partition_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.41/
│ │ │ │ ├── executions.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.42/
│ │ │ │ ├── domain_active_clusters_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.43/
│ │ │ │ ├── manifest.json
│ │ │ │ └── workflow_execution_new_fields.cql
│ │ │ ├── v0.44/
│ │ │ │ ├── domain_audit_log.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.45/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── timer_task.cql
│ │ │ │ └── transfer_task.cql
│ │ │ ├── v0.46/
│ │ │ │ ├── manifest.json
│ │ │ │ └── transfer_task.cql
│ │ │ ├── v0.5/
│ │ │ │ ├── add_replication_config.cql
│ │ │ │ ├── add_target_child_workflow_only_to_transfer_task.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.6/
│ │ │ │ ├── add_shard_cluster_ack_level.cql
│ │ │ │ ├── history_replication_task.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.7/
│ │ │ │ ├── buffered_replication_task.cql
│ │ │ │ ├── failover_version_persistence.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── retry_policy.cql
│ │ │ ├── v0.8/
│ │ │ │ ├── domain_notification.cql
│ │ │ │ └── manifest.json
│ │ │ └── v0.9/
│ │ │ ├── domain_data.cql
│ │ │ ├── manifest.json
│ │ │ └── transfer_timestamp.cql
│ │ ├── embed.go
│ │ ├── version.go
│ │ └── visibility/
│ │ ├── keyspace.cql
│ │ ├── schema.cql
│ │ └── versioned/
│ │ ├── v0.1/
│ │ │ ├── base.cql
│ │ │ └── manifest.json
│ │ ├── v0.10/
│ │ │ ├── add_execution_fields.cql
│ │ │ └── manifest.json
│ │ ├── v0.2/
│ │ │ ├── manifest.json
│ │ │ └── reduce_open_workflow_tombstones.cql
│ │ ├── v0.3/
│ │ │ ├── manifest.json
│ │ │ └── sort_by_close_time.cql
│ │ ├── v0.4/
│ │ │ ├── add_execution_time.cql
│ │ │ ├── add_memo.cql
│ │ │ └── manifest.json
│ │ ├── v0.5/
│ │ │ ├── add_task_list.cql
│ │ │ └── manifest.json
│ │ ├── v0.6/
│ │ │ ├── add_is_cron.cql
│ │ │ └── manifest.json
│ │ ├── v0.7/
│ │ │ ├── add_num_clusters.cql
│ │ │ └── manifest.json
│ │ ├── v0.8/
│ │ │ ├── add_update_time.cql
│ │ │ └── manifest.json
│ │ └── v0.9/
│ │ ├── add_shard_id.cql
│ │ └── manifest.json
│ ├── elasticsearch/
│ │ ├── embed.go
│ │ ├── os2/
│ │ │ └── visibility/
│ │ │ └── index_template.json
│ │ ├── v6/
│ │ │ └── visibility/
│ │ │ └── index_template.json
│ │ └── v7/
│ │ └── visibility/
│ │ └── index_template.json
│ ├── mongodb/
│ │ ├── README.md
│ │ ├── cadence/
│ │ │ ├── collectionSchema.go
│ │ │ ├── schema.json
│ │ │ └── versioned/
│ │ │ └── v0.1/
│ │ │ ├── base.json
│ │ │ └── manifest.json
│ │ └── version.go
│ ├── mysql/
│ │ ├── embed.go
│ │ ├── v8/
│ │ │ ├── cadence/
│ │ │ │ ├── database.sql
│ │ │ │ ├── schema.sql
│ │ │ │ └── versioned/
│ │ │ │ ├── v0.1/
│ │ │ │ │ ├── base.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── v0.2/
│ │ │ │ │ ├── manifest.json
│ │ │ │ │ └── queue.sql
│ │ │ │ ├── v0.3/
│ │ │ │ │ ├── manifest.json
│ │ │ │ │ └── replication_tasks_dlq.sql
│ │ │ │ ├── v0.4/
│ │ │ │ │ ├── blob_size.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── v0.5/
│ │ │ │ │ ├── cross_cluster_table.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── v0.6/
│ │ │ │ │ ├── cluster_config.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ └── v0.7/
│ │ │ │ ├── domain_audit_log.sql
│ │ │ │ └── manifest.json
│ │ │ └── visibility/
│ │ │ ├── database.sql
│ │ │ ├── schema.sql
│ │ │ └── versioned/
│ │ │ ├── v0.1/
│ │ │ │ ├── base.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.2/
│ │ │ │ ├── add_task_list.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.3/
│ │ │ │ ├── manifest.json
│ │ │ │ └── vs_index.sql
│ │ │ ├── v0.4/
│ │ │ │ ├── add_is_cron.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.5/
│ │ │ │ ├── add_num_clusters.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.6/
│ │ │ │ ├── add_update_time.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.7/
│ │ │ │ ├── add_shard_id.sql
│ │ │ │ └── manifest.json
│ │ │ └── v0.8/
│ │ │ ├── add_execution_fields.sql
│ │ │ └── manifest.json
│ │ └── version.go
│ ├── pinot/
│ │ ├── README.md
│ │ ├── cadence-visibility-config.json
│ │ ├── cadence-visibility-schema.json
│ │ └── create_pinot_table.sh
│ ├── postgres/
│ │ ├── cadence/
│ │ │ ├── database.sql
│ │ │ ├── schema.sql
│ │ │ └── versioned/
│ │ │ ├── v0.1/
│ │ │ │ ├── base.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.2/
│ │ │ │ ├── manifest.json
│ │ │ │ └── queue.sql
│ │ │ ├── v0.3/
│ │ │ │ ├── manifest.json
│ │ │ │ └── replication_tasks_dlq.sql
│ │ │ ├── v0.4/
│ │ │ │ ├── cross_cluster_table.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.5/
│ │ │ │ ├── cluster_config.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.6/
│ │ │ │ ├── extend_workflow_id_length.sql
│ │ │ │ └── manifest.json
│ │ │ └── v0.7/
│ │ │ ├── domain_audit_log.sql
│ │ │ └── manifest.json
│ │ ├── embed.go
│ │ ├── version.go
│ │ └── visibility/
│ │ ├── database.sql
│ │ ├── schema.sql
│ │ └── versioned/
│ │ ├── v0.1/
│ │ │ ├── base.sql
│ │ │ └── manifest.json
│ │ ├── v0.2/
│ │ │ ├── add_task_list.sql
│ │ │ └── manifest.json
│ │ ├── v0.3/
│ │ │ ├── manifest.json
│ │ │ └── vs_index.sql
│ │ ├── v0.4/
│ │ │ ├── add_is_cron.sql
│ │ │ └── manifest.json
│ │ ├── v0.5/
│ │ │ ├── manifest.json
│ │ │ └── num_clusters.sql
│ │ ├── v0.6/
│ │ │ ├── add_update_time.sql
│ │ │ └── manifest.json
│ │ ├── v0.7/
│ │ │ ├── add_shard_id.sql
│ │ │ └── manifest.json
│ │ ├── v0.8/
│ │ │ ├── extend_workflow_id_length.sql
│ │ │ └── manifest.json
│ │ └── v0.9/
│ │ ├── add_execution_fields.sql
│ │ └── manifest.json
│ └── sqlite/
│ ├── cadence/
│ │ ├── schema.sql
│ │ └── versioned/
│ │ └── v0.1/
│ │ ├── base.sql
│ │ └── manifest.json
│ ├── embed.go
│ ├── version.go
│ └── visibility/
│ ├── schema.sql
│ └── versioned/
│ ├── v0.1/
│ │ ├── base.sql
│ │ └── manifest.json
│ └── v0.2/
│ ├── add_execution_fields.sql
│ └── manifest.json
├── scripts/
│ ├── build-with-ldflags.sh
│ ├── check-go-toolchain.sh
│ ├── check-gomod-version.sh
│ ├── docker-build.sh
│ ├── generate_cluster_attributes.sh
│ ├── get-ldflags.sh
│ ├── github_actions/
│ │ ├── gen_coverage_metadata.sh
│ │ └── golint.sh
│ ├── run_cass_and_test.sh
│ ├── run_several_instances.sh
│ ├── test_multicluster_domain_workflow.sh
│ └── travis/
│ ├── install-xdc-deps.sh
│ └── setup-mysql.sh
├── service/
│ ├── frontend/
│ │ ├── admin/
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interface.go
│ │ │ └── interface_mock.go
│ │ ├── api/
│ │ │ ├── domain_handlers.go
│ │ │ ├── domain_handlers_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── list_workflow_handlers.go
│ │ │ ├── producer_manager.go
│ │ │ ├── producer_manager_mock.go
│ │ │ ├── producer_manager_test.go
│ │ │ ├── refresh_workflow_tasks.go
│ │ │ ├── refresh_workflow_tasks_test.go
│ │ │ ├── request_validator.go
│ │ │ ├── request_validator_mock.go
│ │ │ ├── request_validator_test.go
│ │ │ ├── shutting_down_test.go
│ │ │ ├── task_list_handlers.go
│ │ │ └── task_list_handlers_test.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── service.go
│ │ ├── templates/
│ │ │ ├── accesscontrolled.tmpl
│ │ │ ├── clusterredirection.tmpl
│ │ │ ├── metered.tmpl
│ │ │ ├── ratelimited.tmpl
│ │ │ └── versioncheck.tmpl
│ │ ├── validate/
│ │ │ └── errors.go
│ │ └── wrappers/
│ │ ├── accesscontrolled/
│ │ │ ├── access_controlled.go
│ │ │ ├── access_controlled_test.go
│ │ │ ├── admin_generated.go
│ │ │ └── api_generated.go
│ │ ├── clusterredirection/
│ │ │ ├── api_generated.go
│ │ │ ├── api_test.go
│ │ │ ├── callwrappers.go
│ │ │ ├── policy.go
│ │ │ ├── policy_mock.go
│ │ │ ├── policy_test.go
│ │ │ ├── utils.go
│ │ │ └── utils_test.go
│ │ ├── grpc/
│ │ │ ├── admin_generated.go
│ │ │ ├── api_generated.go
│ │ │ └── share.go
│ │ ├── metered/
│ │ │ ├── api_generated.go
│ │ │ ├── metered.go
│ │ │ └── metered_test.go
│ │ ├── ratelimited/
│ │ │ ├── api_generated.go
│ │ │ ├── ratelimit.go
│ │ │ └── ratelimit_test.go
│ │ ├── thrift/
│ │ │ ├── admin_generated.go
│ │ │ ├── admin_handler_test.go
│ │ │ ├── api_generated.go
│ │ │ ├── api_handler_test.go
│ │ │ └── constructor.go
│ │ └── versioncheck/
│ │ └── api_generated.go
│ ├── history/
│ │ ├── common/
│ │ │ └── type.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── constants/
│ │ │ ├── constants.go
│ │ │ └── test_constants.go
│ │ ├── decision/
│ │ │ ├── checker.go
│ │ │ ├── checker_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── task_handler.go
│ │ │ └── task_handler_test.go
│ │ ├── engine/
│ │ │ ├── engineimpl/
│ │ │ │ ├── describe_mutable_state.go
│ │ │ │ ├── describe_mutable_state_test.go
│ │ │ │ ├── describe_queues.go
│ │ │ │ ├── describe_workflow_execution.go
│ │ │ │ ├── describe_workflow_execution_test.go
│ │ │ │ ├── dlq_operations.go
│ │ │ │ ├── get_replication_messages.go
│ │ │ │ ├── history_engine.go
│ │ │ │ ├── history_engine2_test.go
│ │ │ │ ├── history_engine3_eventsv2_test.go
│ │ │ │ ├── history_engine_start_test.go
│ │ │ │ ├── history_engine_test.go
│ │ │ │ ├── notify_tasks.go
│ │ │ │ ├── poll_mutable_state.go
│ │ │ │ ├── query_workflow.go
│ │ │ │ ├── reapply_events.go
│ │ │ │ ├── record_activity_task_started.go
│ │ │ │ ├── record_child_execution_completed.go
│ │ │ │ ├── record_decision_task_started.go
│ │ │ │ ├── refresh_workflow_tasks.go
│ │ │ │ ├── refresh_workflow_tasks_test.go
│ │ │ │ ├── register_domain_failover_callback.go
│ │ │ │ ├── register_domain_failover_callback_test.go
│ │ │ │ ├── remove_signal_mutable_state.go
│ │ │ │ ├── request_cancel_workflow_execution.go
│ │ │ │ ├── reset_queues.go
│ │ │ │ ├── reset_sticky_tasklist.go
│ │ │ │ ├── reset_sticky_tasklist_test.go
│ │ │ │ ├── reset_workflow_execution.go
│ │ │ │ ├── reset_workflow_execution_test.go
│ │ │ │ ├── respond_activity_task_canceled.go
│ │ │ │ ├── respond_activity_task_completed.go
│ │ │ │ ├── respond_activity_task_failed.go
│ │ │ │ ├── respond_activity_task_heartbeat.go
│ │ │ │ ├── respond_decision_task_completed.go
│ │ │ │ ├── respond_decision_task_failed.go
│ │ │ │ ├── signal_workflow_execution.go
│ │ │ │ ├── start_workflow_execution.go
│ │ │ │ ├── start_workflow_execution_test.go
│ │ │ │ ├── terminate_workflow_execution.go
│ │ │ │ └── terminate_workflow_execution_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ └── testdata/
│ │ │ └── engine_for_tests.go
│ │ ├── events/
│ │ │ ├── blob.go
│ │ │ ├── blob_test.go
│ │ │ ├── cache.go
│ │ │ ├── cache_mock.go
│ │ │ ├── cache_test.go
│ │ │ ├── notifier.go
│ │ │ ├── notifier_mock.go
│ │ │ └── notifier_test.go
│ │ ├── execution/
│ │ │ ├── cache.go
│ │ │ ├── cache_mock.go
│ │ │ ├── cache_test.go
│ │ │ ├── checksum.go
│ │ │ ├── context.go
│ │ │ ├── context_mock.go
│ │ │ ├── context_test.go
│ │ │ ├── context_util.go
│ │ │ ├── context_util_test.go
│ │ │ ├── history_builder.go
│ │ │ ├── history_builder_test.go
│ │ │ ├── integrity.go
│ │ │ ├── integrity_test.go
│ │ │ ├── mutable_state.go
│ │ │ ├── mutable_state_builder.go
│ │ │ ├── mutable_state_builder_add_continue_as_new_event_test.go
│ │ │ ├── mutable_state_builder_methods_activity.go
│ │ │ ├── mutable_state_builder_methods_activity_test.go
│ │ │ ├── mutable_state_builder_methods_cancellation.go
│ │ │ ├── mutable_state_builder_methods_child_workflow.go
│ │ │ ├── mutable_state_builder_methods_child_workflow_test.go
│ │ │ ├── mutable_state_builder_methods_completed.go
│ │ │ ├── mutable_state_builder_methods_decision.go
│ │ │ ├── mutable_state_builder_methods_decision_test.go
│ │ │ ├── mutable_state_builder_methods_signal.go
│ │ │ ├── mutable_state_builder_methods_signal_test.go
│ │ │ ├── mutable_state_builder_methods_started.go
│ │ │ ├── mutable_state_builder_methods_timedout.go
│ │ │ ├── mutable_state_builder_methods_timer.go
│ │ │ ├── mutable_state_builder_methods_timer_test.go
│ │ │ ├── mutable_state_builder_test.go
│ │ │ ├── mutable_state_decision_task_manager.go
│ │ │ ├── mutable_state_decision_task_manager_mock.go
│ │ │ ├── mutable_state_decision_task_manager_test.go
│ │ │ ├── mutable_state_mock.go
│ │ │ ├── mutable_state_task_generator.go
│ │ │ ├── mutable_state_task_generator_mock.go
│ │ │ ├── mutable_state_task_generator_test.go
│ │ │ ├── mutable_state_task_refresher.go
│ │ │ ├── mutable_state_task_refresher_mock.go
│ │ │ ├── mutable_state_task_refresher_test.go
│ │ │ ├── mutable_state_util.go
│ │ │ ├── mutable_state_util_test.go
│ │ │ ├── mutable_state_util_test_helpers.go
│ │ │ ├── retry.go
│ │ │ ├── retry_test.go
│ │ │ ├── state_builder.go
│ │ │ ├── state_builder_mock.go
│ │ │ ├── state_builder_test.go
│ │ │ ├── state_rebuilder.go
│ │ │ ├── state_rebuilder_mock.go
│ │ │ ├── state_rebuilder_test.go
│ │ │ ├── timer_sequence.go
│ │ │ ├── timer_sequence_mock.go
│ │ │ ├── timer_sequence_test.go
│ │ │ ├── workflow.go
│ │ │ ├── workflow_execution_util.go
│ │ │ ├── workflow_mock.go
│ │ │ └── workflow_test.go
│ │ ├── failover/
│ │ │ ├── coordinator.go
│ │ │ ├── coordinator_mock.go
│ │ │ ├── coordinator_test.go
│ │ │ ├── marker_notifier.go
│ │ │ ├── marker_notifier_mock.go
│ │ │ └── marker_notifier_test.go
│ │ ├── handler/
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interface.go
│ │ │ └── interface_mock.go
│ │ ├── lookup/
│ │ │ ├── lookup.go
│ │ │ └── lookup_test.go
│ │ ├── ndc/
│ │ │ ├── activity_replicator.go
│ │ │ ├── activity_replicator_mock.go
│ │ │ ├── activity_replicator_test.go
│ │ │ ├── branch_manager.go
│ │ │ ├── branch_manager_mock.go
│ │ │ ├── branch_manager_test.go
│ │ │ ├── conflict_resolver.go
│ │ │ ├── conflict_resolver_mock.go
│ │ │ ├── conflict_resolver_test.go
│ │ │ ├── events_reapplier.go
│ │ │ ├── events_reapplier_mock.go
│ │ │ ├── events_reapplier_test.go
│ │ │ ├── existing_workflow_transaction_manager.go
│ │ │ ├── existing_workflow_transaction_manager_mock.go
│ │ │ ├── existing_workflow_transaction_manager_test.go
│ │ │ ├── history_replicator.go
│ │ │ ├── history_replicator_test.go
│ │ │ ├── new_workflow_transaction_mamanger_mock.go
│ │ │ ├── new_workflow_transaction_manager.go
│ │ │ ├── new_workflow_transaction_manager_test.go
│ │ │ ├── replication_task.go
│ │ │ ├── replication_task_mock.go
│ │ │ ├── replication_task_test.go
│ │ │ ├── transaction_manager.go
│ │ │ ├── transaction_manager_mock.go
│ │ │ ├── transaction_manager_test.go
│ │ │ ├── workflow_resetter.go
│ │ │ ├── workflow_resetter_mock.go
│ │ │ └── workflow_resetter_test.go
│ │ ├── query/
│ │ │ ├── query.go
│ │ │ ├── query_test.go
│ │ │ ├── registry.go
│ │ │ ├── registry_mock.go
│ │ │ └── registry_test.go
│ │ ├── queue/
│ │ │ ├── action.go
│ │ │ ├── constants.go
│ │ │ ├── domain_filter.go
│ │ │ ├── domain_filter_test.go
│ │ │ ├── factory.go
│ │ │ ├── factory_mock.go
│ │ │ ├── factory_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── main_test.go
│ │ │ ├── processing_queue.go
│ │ │ ├── processing_queue_collection.go
│ │ │ ├── processing_queue_collection_test.go
│ │ │ ├── processing_queue_state.go
│ │ │ ├── processing_queue_test.go
│ │ │ ├── processor_base.go
│ │ │ ├── processor_base_test.go
│ │ │ ├── processor_options.go
│ │ │ ├── queue_processor_util.go
│ │ │ ├── queue_processor_util_test.go
│ │ │ ├── split_policy.go
│ │ │ ├── split_policy_test.go
│ │ │ ├── task_allocator.go
│ │ │ ├── task_allocator_test.go
│ │ │ ├── timer_queue_active_processor.go
│ │ │ ├── timer_queue_failover_processor.go
│ │ │ ├── timer_queue_processor.go
│ │ │ ├── timer_queue_processor_base.go
│ │ │ ├── timer_queue_processor_base_test.go
│ │ │ ├── timer_queue_standby_processor.go
│ │ │ ├── transfer_queue_processor.go
│ │ │ ├── transfer_queue_processor_base.go
│ │ │ ├── transfer_queue_processor_base_test.go
│ │ │ ├── transfer_queue_processor_test.go
│ │ │ ├── transfer_queue_validator.go
│ │ │ └── transfer_queue_validator_test.go
│ │ ├── queuev2/
│ │ │ ├── alert.go
│ │ │ ├── convert.go
│ │ │ ├── convert_test.go
│ │ │ ├── interface.go
│ │ │ ├── mitigator.go
│ │ │ ├── mitigator_mock.go
│ │ │ ├── mitigator_test.go
│ │ │ ├── monitor.go
│ │ │ ├── monitor_mock.go
│ │ │ ├── monitor_test.go
│ │ │ ├── pause_controller.go
│ │ │ ├── pause_controller_mock.go
│ │ │ ├── pause_controller_test.go
│ │ │ ├── pending_task_tracker.go
│ │ │ ├── pending_task_tracker_mock.go
│ │ │ ├── pending_task_tracker_test.go
│ │ │ ├── predicate.go
│ │ │ ├── predicate_mock.go
│ │ │ ├── predicate_operation.go
│ │ │ ├── predicate_operation_test.go
│ │ │ ├── predicate_test.go
│ │ │ ├── queue_base.go
│ │ │ ├── queue_base_test.go
│ │ │ ├── queue_immediate.go
│ │ │ ├── queue_immediate_test.go
│ │ │ ├── queue_reader.go
│ │ │ ├── queue_reader_mock.go
│ │ │ ├── queue_reader_test.go
│ │ │ ├── queue_scheduled.go
│ │ │ ├── queue_scheduled_test.go
│ │ │ ├── queue_state.go
│ │ │ ├── queue_state_test.go
│ │ │ ├── range.go
│ │ │ ├── range_test.go
│ │ │ ├── timer_queue_factory.go
│ │ │ ├── timer_queue_factory_test.go
│ │ │ ├── transfer_queue_factory.go
│ │ │ ├── transfer_queue_factory_test.go
│ │ │ ├── virtual_queue.go
│ │ │ ├── virtual_queue_manager.go
│ │ │ ├── virtual_queue_manager_mock.go
│ │ │ ├── virtual_queue_manager_test.go
│ │ │ ├── virtual_queue_mock.go
│ │ │ ├── virtual_queue_test.go
│ │ │ ├── virtual_slice.go
│ │ │ ├── virtual_slice_mock.go
│ │ │ └── virtual_slice_test.go
│ │ ├── replication/
│ │ │ ├── dlq_handler.go
│ │ │ ├── dlq_handler_test.go
│ │ │ ├── dynamic_task_batch_sizer.go
│ │ │ ├── dynamic_task_batch_sizer_test.go
│ │ │ ├── metrics_emitter.go
│ │ │ ├── metrics_emitter_test.go
│ │ │ ├── task_ack_manager.go
│ │ │ ├── task_ack_manager_test.go
│ │ │ ├── task_executor.go
│ │ │ ├── task_executor_mock.go
│ │ │ ├── task_executor_test.go
│ │ │ ├── task_fetcher.go
│ │ │ ├── task_fetcher_mock.go
│ │ │ ├── task_fetcher_test.go
│ │ │ ├── task_hydrator.go
│ │ │ ├── task_hydrator_test.go
│ │ │ ├── task_processor.go
│ │ │ ├── task_processor_test.go
│ │ │ ├── task_reader.go
│ │ │ ├── task_reader_test.go
│ │ │ ├── task_store.go
│ │ │ └── task_store_test.go
│ │ ├── reset/
│ │ │ ├── resetter.go
│ │ │ ├── resetter_mock.go
│ │ │ └── resetter_test.go
│ │ ├── resource/
│ │ │ ├── resource.go
│ │ │ ├── resource_mock.go
│ │ │ └── resource_test_utils.go
│ │ ├── service.go
│ │ ├── shard/
│ │ │ ├── context.go
│ │ │ ├── context_mock.go
│ │ │ ├── context_test.go
│ │ │ ├── context_test_utils.go
│ │ │ ├── controller.go
│ │ │ ├── controller_benchmark_test.go
│ │ │ ├── controller_mock.go
│ │ │ └── controller_test.go
│ │ ├── simulation/
│ │ │ └── event.go
│ │ ├── task/
│ │ │ ├── constants.go
│ │ │ ├── event_logger.go
│ │ │ ├── event_logger_test.go
│ │ │ ├── executor_wrapper.go
│ │ │ ├── executor_wrapper_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── priority_assigner.go
│ │ │ ├── priority_assigner_test.go
│ │ │ ├── processor.go
│ │ │ ├── processor_test.go
│ │ │ ├── rate_limited_processor.go
│ │ │ ├── rate_limited_processor_test.go
│ │ │ ├── redispatcher.go
│ │ │ ├── redispatcher_test.go
│ │ │ ├── rescheduler.go
│ │ │ ├── rescheduler_test.go
│ │ │ ├── standby_task_util.go
│ │ │ ├── standby_task_util_test.go
│ │ │ ├── task.go
│ │ │ ├── task_rate_limiter.go
│ │ │ ├── task_rate_limiter_mock.go
│ │ │ ├── task_rate_limiter_test.go
│ │ │ ├── task_test.go
│ │ │ ├── task_util.go
│ │ │ ├── task_util_test.go
│ │ │ ├── timer_active_task_executor.go
│ │ │ ├── timer_active_task_executor_test.go
│ │ │ ├── timer_standby_task_executor.go
│ │ │ ├── timer_standby_task_executor_test.go
│ │ │ ├── timer_task_executor_base.go
│ │ │ ├── timer_task_executor_base_test.go
│ │ │ ├── transfer_active_task_executor.go
│ │ │ ├── transfer_active_task_executor_test.go
│ │ │ ├── transfer_standby_task_executor.go
│ │ │ ├── transfer_standby_task_executor_test.go
│ │ │ ├── transfer_task_executor_base.go
│ │ │ └── transfer_task_executor_base_test.go
│ │ ├── templates/
│ │ │ └── ratelimited.tmpl
│ │ ├── testing/
│ │ │ ├── events_util.go
│ │ │ └── workflow_util.go
│ │ ├── workflow/
│ │ │ ├── context.go
│ │ │ ├── errors.go
│ │ │ ├── util.go
│ │ │ └── util_test.go
│ │ ├── workflowcache/
│ │ │ ├── cache.go
│ │ │ ├── cache_mock.go
│ │ │ ├── cache_test.go
│ │ │ ├── metrics.go
│ │ │ └── metrics_test.go
│ │ └── wrappers/
│ │ ├── grpc/
│ │ │ ├── grpc_handler.go
│ │ │ └── grpc_handler_generated.go
│ │ ├── ratelimited/
│ │ │ ├── handler_generated.go
│ │ │ ├── handler_generated_test.go
│ │ │ ├── ratelimit.go
│ │ │ └── ratelimit_test.go
│ │ └── thrift/
│ │ ├── thrift_handler.go
│ │ ├── thrift_handler_generated.go
│ │ └── thrift_handler_test.go
│ ├── matching/
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── event/
│ │ │ └── logger.go
│ │ ├── handler/
│ │ │ ├── context.go
│ │ │ ├── context_test.go
│ │ │ ├── engine.go
│ │ │ ├── engine_integration_test.go
│ │ │ ├── engine_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interfaces.go
│ │ │ ├── interfaces_mock.go
│ │ │ ├── membership.go
│ │ │ └── membership_test.go
│ │ ├── liveness/
│ │ │ ├── liveness.go
│ │ │ └── liveness_test.go
│ │ ├── poller/
│ │ │ ├── manager.go
│ │ │ └── manager_test.go
│ │ ├── service.go
│ │ ├── tasklist/
│ │ │ ├── adaptive_scaler.go
│ │ │ ├── adaptive_scaler_test.go
│ │ │ ├── db.go
│ │ │ ├── forwarder.go
│ │ │ ├── forwarder_test.go
│ │ │ ├── identifier.go
│ │ │ ├── identifier_test.go
│ │ │ ├── interfaces.go
│ │ │ ├── interfaces_mock.go
│ │ │ ├── isolation_balancer.go
│ │ │ ├── isolation_balancer_test.go
│ │ │ ├── matcher.go
│ │ │ ├── matcher_test.go
│ │ │ ├── shard_processor.go
│ │ │ ├── shard_processor_factory.go
│ │ │ ├── shard_processor_test.go
│ │ │ ├── task.go
│ │ │ ├── task_completer.go
│ │ │ ├── task_completer_test.go
│ │ │ ├── task_gc.go
│ │ │ ├── task_list_limiter.go
│ │ │ ├── task_list_limiter_test.go
│ │ │ ├── task_list_manager.go
│ │ │ ├── task_list_manager_test.go
│ │ │ ├── task_list_registry.go
│ │ │ ├── task_list_registry_test.go
│ │ │ ├── task_reader.go
│ │ │ ├── task_reader_test.go
│ │ │ ├── task_test.go
│ │ │ ├── task_writer.go
│ │ │ └── testing.go
│ │ └── wrappers/
│ │ ├── grpc/
│ │ │ ├── grpc_handler.go
│ │ │ └── grpc_handler_generated.go
│ │ └── thrift/
│ │ ├── thrift_handler.go
│ │ ├── thrift_handler_generated.go
│ │ └── thrift_handler_test.go
│ ├── sharddistributor/
│ │ ├── canary/
│ │ │ ├── config/
│ │ │ │ └── config.go
│ │ │ ├── executors/
│ │ │ │ ├── executors.go
│ │ │ │ └── executors_test.go
│ │ │ ├── externalshardassignment/
│ │ │ │ ├── shardassigner.go
│ │ │ │ └── shardassigner_test.go
│ │ │ ├── factory/
│ │ │ │ ├── factory.go
│ │ │ │ └── factory_test.go
│ │ │ ├── handler/
│ │ │ │ ├── ping_handler.go
│ │ │ │ └── ping_handler_test.go
│ │ │ ├── module.go
│ │ │ ├── module_test.go
│ │ │ ├── pinger/
│ │ │ │ ├── canary_client_mock.go
│ │ │ │ ├── pingAndLog.go
│ │ │ │ ├── pinger.go
│ │ │ │ └── pinger_test.go
│ │ │ ├── processor/
│ │ │ │ ├── shardprocessor.go
│ │ │ │ └── shardprocessor_test.go
│ │ │ ├── processorephemeral/
│ │ │ │ ├── canary_client_mock_test.go
│ │ │ │ ├── shardcreator.go
│ │ │ │ ├── shardcreator_test.go
│ │ │ │ ├── shardprocessor.go
│ │ │ │ └── shardprocessor_test.go
│ │ │ ├── sharddistributorclient/
│ │ │ │ └── shardDistributorClient.go
│ │ │ └── sharddistributorexecutorclient/
│ │ │ └── shardDistributorExecutorClient.go
│ │ ├── client/
│ │ │ ├── clientcommon/
│ │ │ │ ├── config.go
│ │ │ │ ├── config_test.go
│ │ │ │ ├── constants.go
│ │ │ │ ├── drain_observer.go
│ │ │ │ └── drain_observer_mock.go
│ │ │ ├── executorclient/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_test.go
│ │ │ │ ├── clientimpl.go
│ │ │ │ ├── clientimpl_test.go
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── meteredClientDecorater.go
│ │ │ │ ├── metricsconstants/
│ │ │ │ │ └── metrics.go
│ │ │ │ ├── noop.go
│ │ │ │ ├── noop_test.go
│ │ │ │ ├── syncgeneric/
│ │ │ │ │ ├── map.go
│ │ │ │ │ └── map_test.go
│ │ │ │ └── yarpc_client_mock.go
│ │ │ └── spectatorclient/
│ │ │ ├── client.go
│ │ │ ├── clientimpl.go
│ │ │ ├── clientimpl_test.go
│ │ │ ├── interface_mock.go
│ │ │ ├── metricsconstants/
│ │ │ │ └── metrics.go
│ │ │ ├── peer_chooser.go
│ │ │ ├── peer_chooser_test.go
│ │ │ └── sync/
│ │ │ ├── resettable_signal.go
│ │ │ └── resettable_signal_test.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ ├── config_test.go
│ │ │ └── configtest/
│ │ │ └── config.go
│ │ ├── handler/
│ │ │ ├── batcher.go
│ │ │ ├── batcher_test.go
│ │ │ ├── ephemeral_assigner.go
│ │ │ ├── ephemeral_assigner_test.go
│ │ │ ├── executor.go
│ │ │ ├── executor_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interfaces.go
│ │ │ └── interfaces_mock.go
│ │ ├── leader/
│ │ │ ├── election/
│ │ │ │ ├── election.go
│ │ │ │ ├── election_mock.go
│ │ │ │ └── election_test.go
│ │ │ ├── namespace/
│ │ │ │ ├── manager.go
│ │ │ │ └── manager_test.go
│ │ │ └── process/
│ │ │ ├── process_mock.go
│ │ │ ├── processor.go
│ │ │ └── processor_test.go
│ │ ├── sharddistributorfx/
│ │ │ ├── fx_test.go
│ │ │ └── sharddistributorfx.go
│ │ ├── sharddistributorspectatorclient/
│ │ │ └── factory/
│ │ │ ├── meteredClientDecorater.go
│ │ │ └── sharddistributorspectatorclient.go
│ │ ├── store/
│ │ │ ├── etcd/
│ │ │ │ ├── etcdclient/
│ │ │ │ │ ├── client.go
│ │ │ │ │ └── client_mock.go
│ │ │ │ ├── etcdkeys/
│ │ │ │ │ ├── etcdkeys.go
│ │ │ │ │ └── etcdkeys_test.go
│ │ │ │ ├── etcdtypes/
│ │ │ │ │ ├── state.go
│ │ │ │ │ ├── state_test.go
│ │ │ │ │ ├── time.go
│ │ │ │ │ └── time_test.go
│ │ │ │ ├── executorstore/
│ │ │ │ │ ├── client.go
│ │ │ │ │ ├── client_test.go
│ │ │ │ │ ├── common/
│ │ │ │ │ │ ├── compression.go
│ │ │ │ │ │ └── compression_test.go
│ │ │ │ │ ├── etcdstore.go
│ │ │ │ │ ├── etcdstore_test.go
│ │ │ │ │ ├── executorstore_mock.go
│ │ │ │ │ ├── module.go
│ │ │ │ │ └── shardcache/
│ │ │ │ │ ├── namespaceshardcache.go
│ │ │ │ │ ├── namespaceshardcache_test.go
│ │ │ │ │ ├── pubsub.go
│ │ │ │ │ ├── pubsub_test.go
│ │ │ │ │ ├── shardcache.go
│ │ │ │ │ └── shardcache_test.go
│ │ │ │ ├── leaderstore/
│ │ │ │ │ ├── etcdleaderstore.go
│ │ │ │ │ └── etcdleaderstore_test.go
│ │ │ │ ├── module.go
│ │ │ │ └── testhelper/
│ │ │ │ └── testhelper.go
│ │ │ ├── leaderstore.go
│ │ │ ├── leaderstore_mock.go
│ │ │ ├── state.go
│ │ │ ├── state_test.go
│ │ │ ├── store.go
│ │ │ ├── store_mock.go
│ │ │ └── wrappers/
│ │ │ ├── metered/
│ │ │ │ ├── base.go
│ │ │ │ ├── metered_test.go
│ │ │ │ └── store_generated.go
│ │ │ └── templates/
│ │ │ └── metered.tmpl
│ │ ├── templates/
│ │ │ └── metered.tmpl
│ │ └── wrappers/
│ │ ├── grpc/
│ │ │ ├── grpc_executor_generated.go
│ │ │ ├── grpc_handler.go
│ │ │ └── grpc_handler_generated.go
│ │ └── metered/
│ │ ├── api_generated.go
│ │ ├── executor_generated.go
│ │ ├── metered.go
│ │ └── metered_test.go
│ ├── templates/
│ │ ├── grpc.tmpl
│ │ └── thrift.tmpl
│ └── worker/
│ ├── README.md
│ ├── archiver/
│ │ ├── activities.go
│ │ ├── activities_test.go
│ │ ├── client.go
│ │ ├── client_mock.go
│ │ ├── client_test.go
│ │ ├── client_worker.go
│ │ ├── handler.go
│ │ ├── handler_mock.go
│ │ ├── handler_test.go
│ │ ├── pump.go
│ │ ├── pump_mock.go
│ │ ├── pump_test.go
│ │ ├── replay_metrics_client.go
│ │ ├── testdata/
│ │ │ └── archival_workflow_history_v1.json
│ │ ├── util.go
│ │ ├── util_test.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── asyncworkflow/
│ │ ├── async_workflow_consumer_manager.go
│ │ └── async_workflow_consumer_manager_test.go
│ ├── batcher/
│ │ ├── batcher.go
│ │ ├── batcher_test.go
│ │ ├── entities.go
│ │ ├── workflow.go
│ │ ├── workflow_retry_test.go
│ │ └── workflow_test.go
│ ├── diagnostics/
│ │ ├── activities.go
│ │ ├── activities_test.go
│ │ ├── analytics/
│ │ │ ├── emitter.go
│ │ │ ├── emitter_test.go
│ │ │ ├── interface.go
│ │ │ └── types.go
│ │ ├── invariant/
│ │ │ ├── failure/
│ │ │ │ ├── failure.go
│ │ │ │ ├── failure_test.go
│ │ │ │ └── types.go
│ │ │ ├── interface.go
│ │ │ ├── retry/
│ │ │ │ ├── retry.go
│ │ │ │ ├── retry_test.go
│ │ │ │ └── types.go
│ │ │ └── timeout/
│ │ │ ├── timeout.go
│ │ │ ├── timeout_test.go
│ │ │ ├── timeout_utils.go
│ │ │ └── types.go
│ │ ├── module.go
│ │ ├── module_test.go
│ │ ├── parent_workflow.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── domaindeprecation/
│ │ ├── activities.go
│ │ ├── activities_test.go
│ │ ├── entities.go
│ │ ├── helpers.go
│ │ ├── module.go
│ │ ├── module_test.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── esanalyzer/
│ │ ├── analyzer.go
│ │ ├── analyzer_test.go
│ │ ├── domainWorkflowTypeCountWorkflow.go
│ │ └── workflow.go
│ ├── failovermanager/
│ │ ├── rebalance_workflow.go
│ │ ├── rebalance_workflow_test.go
│ │ ├── starter.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── indexer/
│ │ ├── esProcessor.go
│ │ ├── esProcessor_test.go
│ │ ├── indexer.go
│ │ ├── indexer_mock.go
│ │ ├── indexer_test.go
│ │ └── migration_indexer.go
│ ├── parentclosepolicy/
│ │ ├── client.go
│ │ ├── client_mock.go
│ │ ├── processor.go
│ │ └── workflow.go
│ ├── replicator/
│ │ ├── domain_replication_processor.go
│ │ ├── domain_replication_processor_test.go
│ │ └── replicator.go
│ ├── scanner/
│ │ ├── README.md
│ │ ├── data_corruption_workflow.go
│ │ ├── data_corruption_workflow_test.go
│ │ ├── executions/
│ │ │ ├── concrete_execution.go
│ │ │ ├── concrete_execution_test.go
│ │ │ ├── current_execution.go
│ │ │ ├── current_test.go
│ │ │ ├── scantype_enumer_generated.go
│ │ │ ├── types.go
│ │ │ └── workflows_test.go
│ │ ├── executor/
│ │ │ ├── executor.go
│ │ │ ├── executor_test.go
│ │ │ └── runq.go
│ │ ├── history/
│ │ │ ├── scavenger.go
│ │ │ └── scavenger_test.go
│ │ ├── scanner.go
│ │ ├── scanner_test.go
│ │ ├── shardscanner/
│ │ │ ├── activities.go
│ │ │ ├── activities_test.go
│ │ │ ├── aggregators.go
│ │ │ ├── aggregators_test.go
│ │ │ ├── fixer.go
│ │ │ ├── fixer_test.go
│ │ │ ├── fixer_workflow.go
│ │ │ ├── fixer_workflow_test.go
│ │ │ ├── scanner.go
│ │ │ ├── scanner_test.go
│ │ │ ├── scanner_workflow.go
│ │ │ ├── scanner_workflow_test.go
│ │ │ ├── types.go
│ │ │ ├── types_test.go
│ │ │ ├── workflows.go
│ │ │ └── workflows_test.go
│ │ ├── tasklist/
│ │ │ ├── db.go
│ │ │ ├── handler.go
│ │ │ ├── mocks_test.go
│ │ │ ├── scavenger.go
│ │ │ └── scavenger_test.go
│ │ ├── timers/
│ │ │ ├── timers.go
│ │ │ └── timers_test.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── scheduler/
│ │ ├── activity.go
│ │ ├── activity_test.go
│ │ ├── client_worker.go
│ │ ├── client_worker_test.go
│ │ ├── types.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── service.go
│ ├── worker/
│ │ ├── worker_interface.go
│ │ └── worker_mock.go
│ └── workercommon/
│ └── util.go
├── simulation/
│ ├── README.md
│ ├── history/
│ │ ├── dynamicconfig/
│ │ │ ├── default.yaml
│ │ │ ├── queuev2.yaml
│ │ │ └── queuev2_split.yaml
│ │ ├── history_simulation_test.go
│ │ ├── run.sh
│ │ ├── testdata/
│ │ │ ├── history_simulation_default.yaml
│ │ │ ├── history_simulation_queuev2.yaml
│ │ │ └── history_simulation_queuev2_split.yaml
│ │ └── workflow/
│ │ └── workflow.go
│ ├── matching/
│ │ ├── comparison/
│ │ │ ├── README.md
│ │ │ └── main.go
│ │ ├── matching_simulation_test.go
│ │ ├── run.sh
│ │ └── testdata/
│ │ ├── matching_simulation_burst.yaml
│ │ ├── matching_simulation_burst_adaptive.yaml
│ │ ├── matching_simulation_default.yaml
│ │ ├── matching_simulation_fluctuating.yaml
│ │ ├── matching_simulation_fluctuating_adaptive.yaml
│ │ ├── matching_simulation_get_partition_config_from_db.yaml
│ │ ├── matching_simulation_more_read_partitions.yaml
│ │ ├── matching_simulation_no_forwarding.yaml
│ │ ├── matching_simulation_no_wait_time_for_addtask.yaml
│ │ ├── matching_simulation_no_wait_time_for_polltask.yaml
│ │ ├── matching_simulation_no_wait_time_for_polltask_and_addtask.yaml
│ │ ├── matching_simulation_round_robin_load_balancer.yaml
│ │ ├── matching_simulation_throughput.yaml
│ │ ├── matching_simulation_weighted_load_balancer_with_backlog.yaml
│ │ ├── matching_simulation_with_backlog.yaml
│ │ ├── matching_simulation_zonal_isolation.yaml
│ │ ├── matching_simulation_zonal_isolation_few_pollers.yaml
│ │ ├── matching_simulation_zonal_isolation_many_pollers.yaml
│ │ ├── matching_simulation_zonal_isolation_single_partition.yaml
│ │ ├── matching_simulation_zonal_isolation_skew.yaml
│ │ ├── matching_simulation_zonal_isolation_skew_extreme.yaml
│ │ └── matching_simulation_zonal_isolation_skew_forwarding.yaml
│ └── replication/
│ ├── README.md
│ ├── replication_simulation_test.go
│ ├── run.sh
│ ├── testdata/
│ │ ├── replication_simulation_activeactive.yaml
│ │ ├── replication_simulation_activeactive_child.yaml
│ │ ├── replication_simulation_activeactive_cron.yaml
│ │ ├── replication_simulation_activeactive_invalid_cluster_attribute.yaml
│ │ ├── replication_simulation_activeactive_regional_failover.yaml
│ │ ├── replication_simulation_activeactive_regional_failover_start_same_wfid.yaml
│ │ ├── replication_simulation_activeactive_regional_failover_start_same_wfid_2.yaml
│ │ ├── replication_simulation_activeactive_same_wfid.yaml
│ │ ├── replication_simulation_activeactive_same_wfid_signalwithstart.yaml
│ │ ├── replication_simulation_activeactive_same_wfid_signalwithstart_delayed.yaml
│ │ ├── replication_simulation_activeactive_signalwithstart_terminateifrunning.yaml
│ │ ├── replication_simulation_activeactive_start_terminateifrunning.yaml
│ │ ├── replication_simulation_activepassive_to_activeactive.yaml
│ │ ├── replication_simulation_budget_manager.yaml
│ │ ├── replication_simulation_clusterredirection.yaml
│ │ ├── replication_simulation_default.yaml
│ │ └── replication_simulation_reset.yaml
│ ├── types/
│ │ ├── repl_sim_config.go
│ │ └── types.go
│ ├── worker/
│ │ └── cmd/
│ │ └── main.go
│ └── workflows/
│ ├── activityloop/
│ │ └── workflow.go
│ ├── childactivityloop/
│ │ └── workflow.go
│ ├── query/
│ │ └── workflow.go
│ ├── timeractivityloop/
│ │ └── workflow.go
│ └── workflows.go
├── testflags/
│ └── testflags.go
└── tools/
├── cassandra/
│ ├── README.md
│ ├── cqlclient.go
│ ├── cqlclient_test.go
│ ├── handler.go
│ ├── handler_test.go
│ └── main.go
├── cli/
│ ├── README.md
│ ├── admin.go
│ ├── admin_async_queue_commands.go
│ ├── admin_async_queue_commands_test.go
│ ├── admin_cluster_commands.go
│ ├── admin_cluster_commands_test.go
│ ├── admin_commands.go
│ ├── admin_commands_test.go
│ ├── admin_config_store_commands.go
│ ├── admin_config_store_commands_test.go
│ ├── admin_db_clean_command.go
│ ├── admin_db_clean_command_test.go
│ ├── admin_db_decode_thrift.go
│ ├── admin_db_decode_thrift_test.go
│ ├── admin_db_scan_command.go
│ ├── admin_db_scan_command_test.go
│ ├── admin_dlq_commands.go
│ ├── admin_elastic_search_commands.go
│ ├── admin_elastic_search_commands_test.go
│ ├── admin_failover_commands.go
│ ├── admin_failover_commands_test.go
│ ├── admin_kafka_commands.go
│ ├── admin_kafka_commands_test.go
│ ├── admin_task_list_commands.go
│ ├── admin_task_list_commands_test.go
│ ├── admin_timers.go
│ ├── admin_timers_mock.go
│ ├── admin_timers_test.go
│ ├── app.go
│ ├── app_test.go
│ ├── clitest/
│ │ ├── context.go
│ │ ├── context_test.go
│ │ ├── runner.go
│ │ └── runner_test.go
│ ├── cluster.go
│ ├── cluster_commands.go
│ ├── database.go
│ ├── database_test.go
│ ├── defs.go
│ ├── domain.go
│ ├── domain_commands.go
│ ├── domain_commands_test.go
│ ├── domain_migration_command.go
│ ├── domain_migration_command_test.go
│ ├── domain_utils.go
│ ├── factory.go
│ ├── factory_mock.go
│ ├── flags.go
│ ├── histogram.go
│ ├── histogram_test.go
│ ├── isolation-groups.go
│ ├── isolation_groups_test.go
│ ├── mock_manager_factory.go
│ ├── render.go
│ ├── render_test.go
│ ├── task_list.go
│ ├── task_list_commands.go
│ ├── testdata/
│ │ ├── scan_input.json
│ │ ├── scan_input_bad_data.json
│ │ └── scan_input_empty.json
│ ├── utils.go
│ ├── utils_test.go
│ ├── workflow.go
│ ├── workflow_batch_commands.go
│ ├── workflow_batch_commands_test.go
│ ├── workflow_commands.go
│ └── workflow_commands_test.go
├── common/
│ ├── commoncli/
│ │ ├── cli.go
│ │ └── cli_test.go
│ ├── flag/
│ │ ├── flag.go
│ │ └── flag_test.go
│ └── schema/
│ ├── handler.go
│ ├── handler_test.go
│ ├── schema_client_mock.go
│ ├── schema_graph.go
│ ├── schema_graph_test.go
│ ├── setuptask.go
│ ├── types.go
│ ├── updatetask.go
│ ├── updatetask_test.go
│ ├── util.go
│ ├── util_test.go
│ ├── version.go
│ └── version_test.go
├── linter/
│ └── funcorder/
│ ├── analyzer.go
│ └── cmd/
│ └── funcorder/
│ └── main.go
├── mcp/
│ ├── README.md
│ ├── main.go
│ └── util.go
└── sql/
├── README.md
├── conn.go
├── handler.go
├── main.go
└── sqlite/
└── sqlite_test.go
================================================
FILE CONTENTS
================================================
================================================
FILE: .dockerignore
================================================
.bin/
.build/
cadence
cadence-server
cadence-canary
cadence-bench
cadence-sql-tool
cadence-cassandra-tool
vendor/
================================================
FILE: .envrc
================================================
# Prepend project binary directories to the PATH
PATH_add .bin
PATH_add .build/bin
================================================
FILE: .fossa.yml
================================================
version: 2
cli:
server: https://app.fossa.com
fetcher: custom
project: git@github.com:uber/cadence.git
analyze:
modules:
- name: github.com/uber/cadence/cmd/canary
type: go
target: github.com/uber/cadence/cmd/canary
path: cmd/canary
- name: github.com/uber/cadence/cmd/server
type: go
target: github.com/uber/cadence/cmd/server
path: cmd/server
- name: github.com/uber/cadence/cmd/tools/cassandra
type: go
target: github.com/uber/cadence/cmd/tools/cassandra
path: cmd/tools/cassandra
- name: github.com/uber/cadence/cmd/tools/cli
type: go
target: github.com/uber/cadence/cmd/tools/cli
path: cmd/tools/cli
- name: github.com/uber/cadence/cmd/tools/copyright
type: go
target: github.com/uber/cadence/cmd/tools/copyright
path: cmd/tools/copyright
- name: github.com/uber/cadence/cmd/tools/sql
type: go
target: github.com/uber/cadence/cmd/tools/sql
path: cmd/tools/sql
================================================
FILE: .gen/go/admin/admin.go
================================================
// Code generated by thriftrw v1.29.2. DO NOT EDIT.
// @generated
package admin
import (
bytes "bytes"
base64 "encoding/base64"
errors "errors"
fmt "fmt"
strings "strings"
multierr "go.uber.org/multierr"
stream "go.uber.org/thriftrw/protocol/stream"
thriftreflect "go.uber.org/thriftrw/thriftreflect"
wire "go.uber.org/thriftrw/wire"
zapcore "go.uber.org/zap/zapcore"
config "github.com/uber/cadence/.gen/go/config"
replicator "github.com/uber/cadence/.gen/go/replicator"
shared "github.com/uber/cadence/.gen/go/shared"
)
type AddSearchAttributeRequest struct {
SearchAttribute map[string]shared.IndexedValueType `json:"searchAttribute,omitempty"`
SecurityToken *string `json:"securityToken,omitempty"`
}
type _Map_String_IndexedValueType_MapItemList map[string]shared.IndexedValueType
func (m _Map_String_IndexedValueType_MapItemList) ForEach(f func(wire.MapItem) error) error {
for k, v := range m {
kw, err := wire.NewValueString(k), error(nil)
if err != nil {
return err
}
vw, err := v.ToWire()
if err != nil {
return err
}
err = f(wire.MapItem{Key: kw, Value: vw})
if err != nil {
return err
}
}
return nil
}
func (m _Map_String_IndexedValueType_MapItemList) Size() int {
return len(m)
}
func (_Map_String_IndexedValueType_MapItemList) KeyType() wire.Type {
return wire.TBinary
}
func (_Map_String_IndexedValueType_MapItemList) ValueType() wire.Type {
return wire.TI32
}
func (_Map_String_IndexedValueType_MapItemList) Close() {}
// ToWire translates a AddSearchAttributeRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *AddSearchAttributeRequest) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.SearchAttribute != nil {
w, err = wire.NewValueMap(_Map_String_IndexedValueType_MapItemList(v.SearchAttribute)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.SecurityToken != nil {
w, err = wire.NewValueString(*(v.SecurityToken)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _IndexedValueType_Read(w wire.Value) (shared.IndexedValueType, error) {
var v shared.IndexedValueType
err := v.FromWire(w)
return v, err
}
func _Map_String_IndexedValueType_Read(m wire.MapItemList) (map[string]shared.IndexedValueType, error) {
if m.KeyType() != wire.TBinary {
return nil, nil
}
if m.ValueType() != wire.TI32 {
return nil, nil
}
o := make(map[string]shared.IndexedValueType, m.Size())
err := m.ForEach(func(x wire.MapItem) error {
k, err := x.Key.GetString(), error(nil)
if err != nil {
return err
}
v, err := _IndexedValueType_Read(x.Value)
if err != nil {
return err
}
o[k] = v
return nil
})
m.Close()
return o, err
}
// FromWire deserializes a AddSearchAttributeRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a AddSearchAttributeRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v AddSearchAttributeRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *AddSearchAttributeRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TMap {
v.SearchAttribute, err = _Map_String_IndexedValueType_Read(field.Value.GetMap())
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.SecurityToken = &x
if err != nil {
return err
}
}
}
}
return nil
}
func _Map_String_IndexedValueType_Encode(val map[string]shared.IndexedValueType, sw stream.Writer) error {
mh := stream.MapHeader{
KeyType: wire.TBinary,
ValueType: wire.TI32,
Length: len(val),
}
if err := sw.WriteMapBegin(mh); err != nil {
return err
}
for k, v := range val {
if err := sw.WriteString(k); err != nil {
return err
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteMapEnd()
}
// Encode serializes a AddSearchAttributeRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a AddSearchAttributeRequest struct could not be encoded.
func (v *AddSearchAttributeRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.SearchAttribute != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TMap}); err != nil {
return err
}
if err := _Map_String_IndexedValueType_Encode(v.SearchAttribute, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.SecurityToken != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.SecurityToken)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _IndexedValueType_Decode(sr stream.Reader) (shared.IndexedValueType, error) {
var v shared.IndexedValueType
err := v.Decode(sr)
return v, err
}
func _Map_String_IndexedValueType_Decode(sr stream.Reader) (map[string]shared.IndexedValueType, error) {
mh, err := sr.ReadMapBegin()
if err != nil {
return nil, err
}
if mh.KeyType != wire.TBinary || mh.ValueType != wire.TI32 {
for i := 0; i < mh.Length; i++ {
if err := sr.Skip(mh.KeyType); err != nil {
return nil, err
}
if err := sr.Skip(mh.ValueType); err != nil {
return nil, err
}
}
return nil, sr.ReadMapEnd()
}
o := make(map[string]shared.IndexedValueType, mh.Length)
for i := 0; i < mh.Length; i++ {
k, err := sr.ReadString()
if err != nil {
return nil, err
}
v, err := _IndexedValueType_Decode(sr)
if err != nil {
return nil, err
}
o[k] = v
}
if err = sr.ReadMapEnd(); err != nil {
return nil, err
}
return o, err
}
// Decode deserializes a AddSearchAttributeRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a AddSearchAttributeRequest struct could not be generated from the wire
// representation.
func (v *AddSearchAttributeRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TMap:
v.SearchAttribute, err = _Map_String_IndexedValueType_Decode(sr)
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.SecurityToken = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a AddSearchAttributeRequest
// struct.
func (v *AddSearchAttributeRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [2]string
i := 0
if v.SearchAttribute != nil {
fields[i] = fmt.Sprintf("SearchAttribute: %v", v.SearchAttribute)
i++
}
if v.SecurityToken != nil {
fields[i] = fmt.Sprintf("SecurityToken: %v", *(v.SecurityToken))
i++
}
return fmt.Sprintf("AddSearchAttributeRequest{%v}", strings.Join(fields[:i], ", "))
}
func _Map_String_IndexedValueType_Equals(lhs, rhs map[string]shared.IndexedValueType) bool {
if len(lhs) != len(rhs) {
return false
}
for lk, lv := range lhs {
rv, ok := rhs[lk]
if !ok {
return false
}
if !lv.Equals(rv) {
return false
}
}
return true
}
func _String_EqualsPtr(lhs, rhs *string) bool {
if lhs != nil && rhs != nil {
x := *lhs
y := *rhs
return (x == y)
}
return lhs == nil && rhs == nil
}
// Equals returns true if all the fields of this AddSearchAttributeRequest match the
// provided AddSearchAttributeRequest.
//
// This function performs a deep comparison.
func (v *AddSearchAttributeRequest) Equals(rhs *AddSearchAttributeRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.SearchAttribute == nil && rhs.SearchAttribute == nil) || (v.SearchAttribute != nil && rhs.SearchAttribute != nil && _Map_String_IndexedValueType_Equals(v.SearchAttribute, rhs.SearchAttribute))) {
return false
}
if !_String_EqualsPtr(v.SecurityToken, rhs.SecurityToken) {
return false
}
return true
}
type _Map_String_IndexedValueType_Zapper map[string]shared.IndexedValueType
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of _Map_String_IndexedValueType_Zapper.
func (m _Map_String_IndexedValueType_Zapper) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
for k, v := range m {
err = multierr.Append(err, enc.AddObject((string)(k), v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of AddSearchAttributeRequest.
func (v *AddSearchAttributeRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.SearchAttribute != nil {
err = multierr.Append(err, enc.AddObject("searchAttribute", (_Map_String_IndexedValueType_Zapper)(v.SearchAttribute)))
}
if v.SecurityToken != nil {
enc.AddString("securityToken", *v.SecurityToken)
}
return err
}
// GetSearchAttribute returns the value of SearchAttribute if it is set or its
// zero value if it is unset.
func (v *AddSearchAttributeRequest) GetSearchAttribute() (o map[string]shared.IndexedValueType) {
if v != nil && v.SearchAttribute != nil {
return v.SearchAttribute
}
return
}
// IsSetSearchAttribute returns true if SearchAttribute is not nil.
func (v *AddSearchAttributeRequest) IsSetSearchAttribute() bool {
return v != nil && v.SearchAttribute != nil
}
// GetSecurityToken returns the value of SecurityToken if it is set or its
// zero value if it is unset.
func (v *AddSearchAttributeRequest) GetSecurityToken() (o string) {
if v != nil && v.SecurityToken != nil {
return *v.SecurityToken
}
return
}
// IsSetSecurityToken returns true if SecurityToken is not nil.
func (v *AddSearchAttributeRequest) IsSetSecurityToken() bool {
return v != nil && v.SecurityToken != nil
}
type AdminDeleteWorkflowRequest struct {
Domain *string `json:"domain,omitempty"`
Execution *shared.WorkflowExecution `json:"execution,omitempty"`
}
// ToWire translates a AdminDeleteWorkflowRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *AdminDeleteWorkflowRequest) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.Domain != nil {
w, err = wire.NewValueString(*(v.Domain)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Execution != nil {
w, err = v.Execution.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _WorkflowExecution_Read(w wire.Value) (*shared.WorkflowExecution, error) {
var v shared.WorkflowExecution
err := v.FromWire(w)
return &v, err
}
// FromWire deserializes a AdminDeleteWorkflowRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a AdminDeleteWorkflowRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v AdminDeleteWorkflowRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *AdminDeleteWorkflowRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Domain = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TStruct {
v.Execution, err = _WorkflowExecution_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a AdminDeleteWorkflowRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a AdminDeleteWorkflowRequest struct could not be encoded.
func (v *AdminDeleteWorkflowRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Domain != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Domain)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Execution != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TStruct}); err != nil {
return err
}
if err := v.Execution.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _WorkflowExecution_Decode(sr stream.Reader) (*shared.WorkflowExecution, error) {
var v shared.WorkflowExecution
err := v.Decode(sr)
return &v, err
}
// Decode deserializes a AdminDeleteWorkflowRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a AdminDeleteWorkflowRequest struct could not be generated from the wire
// representation.
func (v *AdminDeleteWorkflowRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Domain = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TStruct:
v.Execution, err = _WorkflowExecution_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a AdminDeleteWorkflowRequest
// struct.
func (v *AdminDeleteWorkflowRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [2]string
i := 0
if v.Domain != nil {
fields[i] = fmt.Sprintf("Domain: %v", *(v.Domain))
i++
}
if v.Execution != nil {
fields[i] = fmt.Sprintf("Execution: %v", v.Execution)
i++
}
return fmt.Sprintf("AdminDeleteWorkflowRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this AdminDeleteWorkflowRequest match the
// provided AdminDeleteWorkflowRequest.
//
// This function performs a deep comparison.
func (v *AdminDeleteWorkflowRequest) Equals(rhs *AdminDeleteWorkflowRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Domain, rhs.Domain) {
return false
}
if !((v.Execution == nil && rhs.Execution == nil) || (v.Execution != nil && rhs.Execution != nil && v.Execution.Equals(rhs.Execution))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of AdminDeleteWorkflowRequest.
func (v *AdminDeleteWorkflowRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Domain != nil {
enc.AddString("domain", *v.Domain)
}
if v.Execution != nil {
err = multierr.Append(err, enc.AddObject("execution", v.Execution))
}
return err
}
// GetDomain returns the value of Domain if it is set or its
// zero value if it is unset.
func (v *AdminDeleteWorkflowRequest) GetDomain() (o string) {
if v != nil && v.Domain != nil {
return *v.Domain
}
return
}
// IsSetDomain returns true if Domain is not nil.
func (v *AdminDeleteWorkflowRequest) IsSetDomain() bool {
return v != nil && v.Domain != nil
}
// GetExecution returns the value of Execution if it is set or its
// zero value if it is unset.
func (v *AdminDeleteWorkflowRequest) GetExecution() (o *shared.WorkflowExecution) {
if v != nil && v.Execution != nil {
return v.Execution
}
return
}
// IsSetExecution returns true if Execution is not nil.
func (v *AdminDeleteWorkflowRequest) IsSetExecution() bool {
return v != nil && v.Execution != nil
}
type AdminDeleteWorkflowResponse struct {
HistoryDeleted *bool `json:"historyDeleted,omitempty"`
ExecutionsDeleted *bool `json:"executionsDeleted,omitempty"`
VisibilityDeleted *bool `json:"visibilityDeleted,omitempty"`
}
// ToWire translates a AdminDeleteWorkflowResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *AdminDeleteWorkflowResponse) ToWire() (wire.Value, error) {
var (
fields [3]wire.Field
i int = 0
w wire.Value
err error
)
if v.HistoryDeleted != nil {
w, err = wire.NewValueBool(*(v.HistoryDeleted)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.ExecutionsDeleted != nil {
w, err = wire.NewValueBool(*(v.ExecutionsDeleted)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.VisibilityDeleted != nil {
w, err = wire.NewValueBool(*(v.VisibilityDeleted)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a AdminDeleteWorkflowResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a AdminDeleteWorkflowResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v AdminDeleteWorkflowResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *AdminDeleteWorkflowResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.HistoryDeleted = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.ExecutionsDeleted = &x
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.VisibilityDeleted = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a AdminDeleteWorkflowResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a AdminDeleteWorkflowResponse struct could not be encoded.
func (v *AdminDeleteWorkflowResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.HistoryDeleted != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.HistoryDeleted)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.ExecutionsDeleted != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.ExecutionsDeleted)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.VisibilityDeleted != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.VisibilityDeleted)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a AdminDeleteWorkflowResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a AdminDeleteWorkflowResponse struct could not be generated from the wire
// representation.
func (v *AdminDeleteWorkflowResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.HistoryDeleted = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.ExecutionsDeleted = &x
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.VisibilityDeleted = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a AdminDeleteWorkflowResponse
// struct.
func (v *AdminDeleteWorkflowResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [3]string
i := 0
if v.HistoryDeleted != nil {
fields[i] = fmt.Sprintf("HistoryDeleted: %v", *(v.HistoryDeleted))
i++
}
if v.ExecutionsDeleted != nil {
fields[i] = fmt.Sprintf("ExecutionsDeleted: %v", *(v.ExecutionsDeleted))
i++
}
if v.VisibilityDeleted != nil {
fields[i] = fmt.Sprintf("VisibilityDeleted: %v", *(v.VisibilityDeleted))
i++
}
return fmt.Sprintf("AdminDeleteWorkflowResponse{%v}", strings.Join(fields[:i], ", "))
}
func _Bool_EqualsPtr(lhs, rhs *bool) bool {
if lhs != nil && rhs != nil {
x := *lhs
y := *rhs
return (x == y)
}
return lhs == nil && rhs == nil
}
// Equals returns true if all the fields of this AdminDeleteWorkflowResponse match the
// provided AdminDeleteWorkflowResponse.
//
// This function performs a deep comparison.
func (v *AdminDeleteWorkflowResponse) Equals(rhs *AdminDeleteWorkflowResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_Bool_EqualsPtr(v.HistoryDeleted, rhs.HistoryDeleted) {
return false
}
if !_Bool_EqualsPtr(v.ExecutionsDeleted, rhs.ExecutionsDeleted) {
return false
}
if !_Bool_EqualsPtr(v.VisibilityDeleted, rhs.VisibilityDeleted) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of AdminDeleteWorkflowResponse.
func (v *AdminDeleteWorkflowResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.HistoryDeleted != nil {
enc.AddBool("historyDeleted", *v.HistoryDeleted)
}
if v.ExecutionsDeleted != nil {
enc.AddBool("executionsDeleted", *v.ExecutionsDeleted)
}
if v.VisibilityDeleted != nil {
enc.AddBool("visibilityDeleted", *v.VisibilityDeleted)
}
return err
}
// GetHistoryDeleted returns the value of HistoryDeleted if it is set or its
// zero value if it is unset.
func (v *AdminDeleteWorkflowResponse) GetHistoryDeleted() (o bool) {
if v != nil && v.HistoryDeleted != nil {
return *v.HistoryDeleted
}
return
}
// IsSetHistoryDeleted returns true if HistoryDeleted is not nil.
func (v *AdminDeleteWorkflowResponse) IsSetHistoryDeleted() bool {
return v != nil && v.HistoryDeleted != nil
}
// GetExecutionsDeleted returns the value of ExecutionsDeleted if it is set or its
// zero value if it is unset.
func (v *AdminDeleteWorkflowResponse) GetExecutionsDeleted() (o bool) {
if v != nil && v.ExecutionsDeleted != nil {
return *v.ExecutionsDeleted
}
return
}
// IsSetExecutionsDeleted returns true if ExecutionsDeleted is not nil.
func (v *AdminDeleteWorkflowResponse) IsSetExecutionsDeleted() bool {
return v != nil && v.ExecutionsDeleted != nil
}
// GetVisibilityDeleted returns the value of VisibilityDeleted if it is set or its
// zero value if it is unset.
func (v *AdminDeleteWorkflowResponse) GetVisibilityDeleted() (o bool) {
if v != nil && v.VisibilityDeleted != nil {
return *v.VisibilityDeleted
}
return
}
// IsSetVisibilityDeleted returns true if VisibilityDeleted is not nil.
func (v *AdminDeleteWorkflowResponse) IsSetVisibilityDeleted() bool {
return v != nil && v.VisibilityDeleted != nil
}
type AdminMaintainWorkflowRequest struct {
Domain *string `json:"domain,omitempty"`
Execution *shared.WorkflowExecution `json:"execution,omitempty"`
}
// ToWire translates a AdminMaintainWorkflowRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *AdminMaintainWorkflowRequest) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.Domain != nil {
w, err = wire.NewValueString(*(v.Domain)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Execution != nil {
w, err = v.Execution.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a AdminMaintainWorkflowRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a AdminMaintainWorkflowRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v AdminMaintainWorkflowRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *AdminMaintainWorkflowRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Domain = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TStruct {
v.Execution, err = _WorkflowExecution_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a AdminMaintainWorkflowRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a AdminMaintainWorkflowRequest struct could not be encoded.
func (v *AdminMaintainWorkflowRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Domain != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Domain)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Execution != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TStruct}); err != nil {
return err
}
if err := v.Execution.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a AdminMaintainWorkflowRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a AdminMaintainWorkflowRequest struct could not be generated from the wire
// representation.
func (v *AdminMaintainWorkflowRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Domain = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TStruct:
v.Execution, err = _WorkflowExecution_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a AdminMaintainWorkflowRequest
// struct.
func (v *AdminMaintainWorkflowRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [2]string
i := 0
if v.Domain != nil {
fields[i] = fmt.Sprintf("Domain: %v", *(v.Domain))
i++
}
if v.Execution != nil {
fields[i] = fmt.Sprintf("Execution: %v", v.Execution)
i++
}
return fmt.Sprintf("AdminMaintainWorkflowRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this AdminMaintainWorkflowRequest match the
// provided AdminMaintainWorkflowRequest.
//
// This function performs a deep comparison.
func (v *AdminMaintainWorkflowRequest) Equals(rhs *AdminMaintainWorkflowRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Domain, rhs.Domain) {
return false
}
if !((v.Execution == nil && rhs.Execution == nil) || (v.Execution != nil && rhs.Execution != nil && v.Execution.Equals(rhs.Execution))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of AdminMaintainWorkflowRequest.
func (v *AdminMaintainWorkflowRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Domain != nil {
enc.AddString("domain", *v.Domain)
}
if v.Execution != nil {
err = multierr.Append(err, enc.AddObject("execution", v.Execution))
}
return err
}
// GetDomain returns the value of Domain if it is set or its
// zero value if it is unset.
func (v *AdminMaintainWorkflowRequest) GetDomain() (o string) {
if v != nil && v.Domain != nil {
return *v.Domain
}
return
}
// IsSetDomain returns true if Domain is not nil.
func (v *AdminMaintainWorkflowRequest) IsSetDomain() bool {
return v != nil && v.Domain != nil
}
// GetExecution returns the value of Execution if it is set or its
// zero value if it is unset.
func (v *AdminMaintainWorkflowRequest) GetExecution() (o *shared.WorkflowExecution) {
if v != nil && v.Execution != nil {
return v.Execution
}
return
}
// IsSetExecution returns true if Execution is not nil.
func (v *AdminMaintainWorkflowRequest) IsSetExecution() bool {
return v != nil && v.Execution != nil
}
type AdminMaintainWorkflowResponse struct {
HistoryDeleted *bool `json:"historyDeleted,omitempty"`
ExecutionsDeleted *bool `json:"executionsDeleted,omitempty"`
VisibilityDeleted *bool `json:"visibilityDeleted,omitempty"`
}
// ToWire translates a AdminMaintainWorkflowResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *AdminMaintainWorkflowResponse) ToWire() (wire.Value, error) {
var (
fields [3]wire.Field
i int = 0
w wire.Value
err error
)
if v.HistoryDeleted != nil {
w, err = wire.NewValueBool(*(v.HistoryDeleted)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.ExecutionsDeleted != nil {
w, err = wire.NewValueBool(*(v.ExecutionsDeleted)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.VisibilityDeleted != nil {
w, err = wire.NewValueBool(*(v.VisibilityDeleted)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a AdminMaintainWorkflowResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a AdminMaintainWorkflowResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v AdminMaintainWorkflowResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *AdminMaintainWorkflowResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.HistoryDeleted = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.ExecutionsDeleted = &x
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.VisibilityDeleted = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a AdminMaintainWorkflowResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a AdminMaintainWorkflowResponse struct could not be encoded.
func (v *AdminMaintainWorkflowResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.HistoryDeleted != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.HistoryDeleted)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.ExecutionsDeleted != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.ExecutionsDeleted)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.VisibilityDeleted != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.VisibilityDeleted)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a AdminMaintainWorkflowResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a AdminMaintainWorkflowResponse struct could not be generated from the wire
// representation.
func (v *AdminMaintainWorkflowResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.HistoryDeleted = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.ExecutionsDeleted = &x
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.VisibilityDeleted = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a AdminMaintainWorkflowResponse
// struct.
func (v *AdminMaintainWorkflowResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [3]string
i := 0
if v.HistoryDeleted != nil {
fields[i] = fmt.Sprintf("HistoryDeleted: %v", *(v.HistoryDeleted))
i++
}
if v.ExecutionsDeleted != nil {
fields[i] = fmt.Sprintf("ExecutionsDeleted: %v", *(v.ExecutionsDeleted))
i++
}
if v.VisibilityDeleted != nil {
fields[i] = fmt.Sprintf("VisibilityDeleted: %v", *(v.VisibilityDeleted))
i++
}
return fmt.Sprintf("AdminMaintainWorkflowResponse{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this AdminMaintainWorkflowResponse match the
// provided AdminMaintainWorkflowResponse.
//
// This function performs a deep comparison.
func (v *AdminMaintainWorkflowResponse) Equals(rhs *AdminMaintainWorkflowResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_Bool_EqualsPtr(v.HistoryDeleted, rhs.HistoryDeleted) {
return false
}
if !_Bool_EqualsPtr(v.ExecutionsDeleted, rhs.ExecutionsDeleted) {
return false
}
if !_Bool_EqualsPtr(v.VisibilityDeleted, rhs.VisibilityDeleted) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of AdminMaintainWorkflowResponse.
func (v *AdminMaintainWorkflowResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.HistoryDeleted != nil {
enc.AddBool("historyDeleted", *v.HistoryDeleted)
}
if v.ExecutionsDeleted != nil {
enc.AddBool("executionsDeleted", *v.ExecutionsDeleted)
}
if v.VisibilityDeleted != nil {
enc.AddBool("visibilityDeleted", *v.VisibilityDeleted)
}
return err
}
// GetHistoryDeleted returns the value of HistoryDeleted if it is set or its
// zero value if it is unset.
func (v *AdminMaintainWorkflowResponse) GetHistoryDeleted() (o bool) {
if v != nil && v.HistoryDeleted != nil {
return *v.HistoryDeleted
}
return
}
// IsSetHistoryDeleted returns true if HistoryDeleted is not nil.
func (v *AdminMaintainWorkflowResponse) IsSetHistoryDeleted() bool {
return v != nil && v.HistoryDeleted != nil
}
// GetExecutionsDeleted returns the value of ExecutionsDeleted if it is set or its
// zero value if it is unset.
func (v *AdminMaintainWorkflowResponse) GetExecutionsDeleted() (o bool) {
if v != nil && v.ExecutionsDeleted != nil {
return *v.ExecutionsDeleted
}
return
}
// IsSetExecutionsDeleted returns true if ExecutionsDeleted is not nil.
func (v *AdminMaintainWorkflowResponse) IsSetExecutionsDeleted() bool {
return v != nil && v.ExecutionsDeleted != nil
}
// GetVisibilityDeleted returns the value of VisibilityDeleted if it is set or its
// zero value if it is unset.
func (v *AdminMaintainWorkflowResponse) GetVisibilityDeleted() (o bool) {
if v != nil && v.VisibilityDeleted != nil {
return *v.VisibilityDeleted
}
return
}
// IsSetVisibilityDeleted returns true if VisibilityDeleted is not nil.
func (v *AdminMaintainWorkflowResponse) IsSetVisibilityDeleted() bool {
return v != nil && v.VisibilityDeleted != nil
}
type DescribeClusterResponse struct {
SupportedClientVersions *shared.SupportedClientVersions `json:"supportedClientVersions,omitempty"`
MembershipInfo *MembershipInfo `json:"membershipInfo,omitempty"`
PersistenceInfo map[string]*PersistenceInfo `json:"persistenceInfo,omitempty"`
}
type _Map_String_PersistenceInfo_MapItemList map[string]*PersistenceInfo
func (m _Map_String_PersistenceInfo_MapItemList) ForEach(f func(wire.MapItem) error) error {
for k, v := range m {
if v == nil {
return fmt.Errorf("invalid map 'map[string]*PersistenceInfo', key [%v]: value is nil", k)
}
kw, err := wire.NewValueString(k), error(nil)
if err != nil {
return err
}
vw, err := v.ToWire()
if err != nil {
return err
}
err = f(wire.MapItem{Key: kw, Value: vw})
if err != nil {
return err
}
}
return nil
}
func (m _Map_String_PersistenceInfo_MapItemList) Size() int {
return len(m)
}
func (_Map_String_PersistenceInfo_MapItemList) KeyType() wire.Type {
return wire.TBinary
}
func (_Map_String_PersistenceInfo_MapItemList) ValueType() wire.Type {
return wire.TStruct
}
func (_Map_String_PersistenceInfo_MapItemList) Close() {}
// ToWire translates a DescribeClusterResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *DescribeClusterResponse) ToWire() (wire.Value, error) {
var (
fields [3]wire.Field
i int = 0
w wire.Value
err error
)
if v.SupportedClientVersions != nil {
w, err = v.SupportedClientVersions.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.MembershipInfo != nil {
w, err = v.MembershipInfo.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.PersistenceInfo != nil {
w, err = wire.NewValueMap(_Map_String_PersistenceInfo_MapItemList(v.PersistenceInfo)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _SupportedClientVersions_Read(w wire.Value) (*shared.SupportedClientVersions, error) {
var v shared.SupportedClientVersions
err := v.FromWire(w)
return &v, err
}
func _MembershipInfo_Read(w wire.Value) (*MembershipInfo, error) {
var v MembershipInfo
err := v.FromWire(w)
return &v, err
}
func _PersistenceInfo_Read(w wire.Value) (*PersistenceInfo, error) {
var v PersistenceInfo
err := v.FromWire(w)
return &v, err
}
func _Map_String_PersistenceInfo_Read(m wire.MapItemList) (map[string]*PersistenceInfo, error) {
if m.KeyType() != wire.TBinary {
return nil, nil
}
if m.ValueType() != wire.TStruct {
return nil, nil
}
o := make(map[string]*PersistenceInfo, m.Size())
err := m.ForEach(func(x wire.MapItem) error {
k, err := x.Key.GetString(), error(nil)
if err != nil {
return err
}
v, err := _PersistenceInfo_Read(x.Value)
if err != nil {
return err
}
o[k] = v
return nil
})
m.Close()
return o, err
}
// FromWire deserializes a DescribeClusterResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a DescribeClusterResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v DescribeClusterResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *DescribeClusterResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TStruct {
v.SupportedClientVersions, err = _SupportedClientVersions_Read(field.Value)
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TStruct {
v.MembershipInfo, err = _MembershipInfo_Read(field.Value)
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TMap {
v.PersistenceInfo, err = _Map_String_PersistenceInfo_Read(field.Value.GetMap())
if err != nil {
return err
}
}
}
}
return nil
}
func _Map_String_PersistenceInfo_Encode(val map[string]*PersistenceInfo, sw stream.Writer) error {
mh := stream.MapHeader{
KeyType: wire.TBinary,
ValueType: wire.TStruct,
Length: len(val),
}
if err := sw.WriteMapBegin(mh); err != nil {
return err
}
for k, v := range val {
if v == nil {
return fmt.Errorf("invalid map 'map[string]*PersistenceInfo', key [%v]: value is nil", k)
}
if err := sw.WriteString(k); err != nil {
return err
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteMapEnd()
}
// Encode serializes a DescribeClusterResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a DescribeClusterResponse struct could not be encoded.
func (v *DescribeClusterResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.SupportedClientVersions != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TStruct}); err != nil {
return err
}
if err := v.SupportedClientVersions.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.MembershipInfo != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TStruct}); err != nil {
return err
}
if err := v.MembershipInfo.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.PersistenceInfo != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TMap}); err != nil {
return err
}
if err := _Map_String_PersistenceInfo_Encode(v.PersistenceInfo, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _SupportedClientVersions_Decode(sr stream.Reader) (*shared.SupportedClientVersions, error) {
var v shared.SupportedClientVersions
err := v.Decode(sr)
return &v, err
}
func _MembershipInfo_Decode(sr stream.Reader) (*MembershipInfo, error) {
var v MembershipInfo
err := v.Decode(sr)
return &v, err
}
func _PersistenceInfo_Decode(sr stream.Reader) (*PersistenceInfo, error) {
var v PersistenceInfo
err := v.Decode(sr)
return &v, err
}
func _Map_String_PersistenceInfo_Decode(sr stream.Reader) (map[string]*PersistenceInfo, error) {
mh, err := sr.ReadMapBegin()
if err != nil {
return nil, err
}
if mh.KeyType != wire.TBinary || mh.ValueType != wire.TStruct {
for i := 0; i < mh.Length; i++ {
if err := sr.Skip(mh.KeyType); err != nil {
return nil, err
}
if err := sr.Skip(mh.ValueType); err != nil {
return nil, err
}
}
return nil, sr.ReadMapEnd()
}
o := make(map[string]*PersistenceInfo, mh.Length)
for i := 0; i < mh.Length; i++ {
k, err := sr.ReadString()
if err != nil {
return nil, err
}
v, err := _PersistenceInfo_Decode(sr)
if err != nil {
return nil, err
}
o[k] = v
}
if err = sr.ReadMapEnd(); err != nil {
return nil, err
}
return o, err
}
// Decode deserializes a DescribeClusterResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a DescribeClusterResponse struct could not be generated from the wire
// representation.
func (v *DescribeClusterResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TStruct:
v.SupportedClientVersions, err = _SupportedClientVersions_Decode(sr)
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TStruct:
v.MembershipInfo, err = _MembershipInfo_Decode(sr)
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TMap:
v.PersistenceInfo, err = _Map_String_PersistenceInfo_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a DescribeClusterResponse
// struct.
func (v *DescribeClusterResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [3]string
i := 0
if v.SupportedClientVersions != nil {
fields[i] = fmt.Sprintf("SupportedClientVersions: %v", v.SupportedClientVersions)
i++
}
if v.MembershipInfo != nil {
fields[i] = fmt.Sprintf("MembershipInfo: %v", v.MembershipInfo)
i++
}
if v.PersistenceInfo != nil {
fields[i] = fmt.Sprintf("PersistenceInfo: %v", v.PersistenceInfo)
i++
}
return fmt.Sprintf("DescribeClusterResponse{%v}", strings.Join(fields[:i], ", "))
}
func _Map_String_PersistenceInfo_Equals(lhs, rhs map[string]*PersistenceInfo) bool {
if len(lhs) != len(rhs) {
return false
}
for lk, lv := range lhs {
rv, ok := rhs[lk]
if !ok {
return false
}
if !lv.Equals(rv) {
return false
}
}
return true
}
// Equals returns true if all the fields of this DescribeClusterResponse match the
// provided DescribeClusterResponse.
//
// This function performs a deep comparison.
func (v *DescribeClusterResponse) Equals(rhs *DescribeClusterResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.SupportedClientVersions == nil && rhs.SupportedClientVersions == nil) || (v.SupportedClientVersions != nil && rhs.SupportedClientVersions != nil && v.SupportedClientVersions.Equals(rhs.SupportedClientVersions))) {
return false
}
if !((v.MembershipInfo == nil && rhs.MembershipInfo == nil) || (v.MembershipInfo != nil && rhs.MembershipInfo != nil && v.MembershipInfo.Equals(rhs.MembershipInfo))) {
return false
}
if !((v.PersistenceInfo == nil && rhs.PersistenceInfo == nil) || (v.PersistenceInfo != nil && rhs.PersistenceInfo != nil && _Map_String_PersistenceInfo_Equals(v.PersistenceInfo, rhs.PersistenceInfo))) {
return false
}
return true
}
type _Map_String_PersistenceInfo_Zapper map[string]*PersistenceInfo
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of _Map_String_PersistenceInfo_Zapper.
func (m _Map_String_PersistenceInfo_Zapper) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
for k, v := range m {
err = multierr.Append(err, enc.AddObject((string)(k), v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of DescribeClusterResponse.
func (v *DescribeClusterResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.SupportedClientVersions != nil {
err = multierr.Append(err, enc.AddObject("supportedClientVersions", v.SupportedClientVersions))
}
if v.MembershipInfo != nil {
err = multierr.Append(err, enc.AddObject("membershipInfo", v.MembershipInfo))
}
if v.PersistenceInfo != nil {
err = multierr.Append(err, enc.AddObject("persistenceInfo", (_Map_String_PersistenceInfo_Zapper)(v.PersistenceInfo)))
}
return err
}
// GetSupportedClientVersions returns the value of SupportedClientVersions if it is set or its
// zero value if it is unset.
func (v *DescribeClusterResponse) GetSupportedClientVersions() (o *shared.SupportedClientVersions) {
if v != nil && v.SupportedClientVersions != nil {
return v.SupportedClientVersions
}
return
}
// IsSetSupportedClientVersions returns true if SupportedClientVersions is not nil.
func (v *DescribeClusterResponse) IsSetSupportedClientVersions() bool {
return v != nil && v.SupportedClientVersions != nil
}
// GetMembershipInfo returns the value of MembershipInfo if it is set or its
// zero value if it is unset.
func (v *DescribeClusterResponse) GetMembershipInfo() (o *MembershipInfo) {
if v != nil && v.MembershipInfo != nil {
return v.MembershipInfo
}
return
}
// IsSetMembershipInfo returns true if MembershipInfo is not nil.
func (v *DescribeClusterResponse) IsSetMembershipInfo() bool {
return v != nil && v.MembershipInfo != nil
}
// GetPersistenceInfo returns the value of PersistenceInfo if it is set or its
// zero value if it is unset.
func (v *DescribeClusterResponse) GetPersistenceInfo() (o map[string]*PersistenceInfo) {
if v != nil && v.PersistenceInfo != nil {
return v.PersistenceInfo
}
return
}
// IsSetPersistenceInfo returns true if PersistenceInfo is not nil.
func (v *DescribeClusterResponse) IsSetPersistenceInfo() bool {
return v != nil && v.PersistenceInfo != nil
}
type DescribeWorkflowExecutionRequest struct {
Domain *string `json:"domain,omitempty"`
Execution *shared.WorkflowExecution `json:"execution,omitempty"`
}
// ToWire translates a DescribeWorkflowExecutionRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *DescribeWorkflowExecutionRequest) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.Domain != nil {
w, err = wire.NewValueString(*(v.Domain)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Execution != nil {
w, err = v.Execution.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a DescribeWorkflowExecutionRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a DescribeWorkflowExecutionRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v DescribeWorkflowExecutionRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *DescribeWorkflowExecutionRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Domain = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TStruct {
v.Execution, err = _WorkflowExecution_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a DescribeWorkflowExecutionRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a DescribeWorkflowExecutionRequest struct could not be encoded.
func (v *DescribeWorkflowExecutionRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Domain != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Domain)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Execution != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TStruct}); err != nil {
return err
}
if err := v.Execution.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a DescribeWorkflowExecutionRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a DescribeWorkflowExecutionRequest struct could not be generated from the wire
// representation.
func (v *DescribeWorkflowExecutionRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Domain = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TStruct:
v.Execution, err = _WorkflowExecution_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a DescribeWorkflowExecutionRequest
// struct.
func (v *DescribeWorkflowExecutionRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [2]string
i := 0
if v.Domain != nil {
fields[i] = fmt.Sprintf("Domain: %v", *(v.Domain))
i++
}
if v.Execution != nil {
fields[i] = fmt.Sprintf("Execution: %v", v.Execution)
i++
}
return fmt.Sprintf("DescribeWorkflowExecutionRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this DescribeWorkflowExecutionRequest match the
// provided DescribeWorkflowExecutionRequest.
//
// This function performs a deep comparison.
func (v *DescribeWorkflowExecutionRequest) Equals(rhs *DescribeWorkflowExecutionRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Domain, rhs.Domain) {
return false
}
if !((v.Execution == nil && rhs.Execution == nil) || (v.Execution != nil && rhs.Execution != nil && v.Execution.Equals(rhs.Execution))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of DescribeWorkflowExecutionRequest.
func (v *DescribeWorkflowExecutionRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Domain != nil {
enc.AddString("domain", *v.Domain)
}
if v.Execution != nil {
err = multierr.Append(err, enc.AddObject("execution", v.Execution))
}
return err
}
// GetDomain returns the value of Domain if it is set or its
// zero value if it is unset.
func (v *DescribeWorkflowExecutionRequest) GetDomain() (o string) {
if v != nil && v.Domain != nil {
return *v.Domain
}
return
}
// IsSetDomain returns true if Domain is not nil.
func (v *DescribeWorkflowExecutionRequest) IsSetDomain() bool {
return v != nil && v.Domain != nil
}
// GetExecution returns the value of Execution if it is set or its
// zero value if it is unset.
func (v *DescribeWorkflowExecutionRequest) GetExecution() (o *shared.WorkflowExecution) {
if v != nil && v.Execution != nil {
return v.Execution
}
return
}
// IsSetExecution returns true if Execution is not nil.
func (v *DescribeWorkflowExecutionRequest) IsSetExecution() bool {
return v != nil && v.Execution != nil
}
type DescribeWorkflowExecutionResponse struct {
ShardId *string `json:"shardId,omitempty"`
HistoryAddr *string `json:"historyAddr,omitempty"`
MutableStateInCache *string `json:"mutableStateInCache,omitempty"`
MutableStateInDatabase *string `json:"mutableStateInDatabase,omitempty"`
}
// ToWire translates a DescribeWorkflowExecutionResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *DescribeWorkflowExecutionResponse) ToWire() (wire.Value, error) {
var (
fields [4]wire.Field
i int = 0
w wire.Value
err error
)
if v.ShardId != nil {
w, err = wire.NewValueString(*(v.ShardId)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.HistoryAddr != nil {
w, err = wire.NewValueString(*(v.HistoryAddr)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.MutableStateInCache != nil {
w, err = wire.NewValueString(*(v.MutableStateInCache)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 40, Value: w}
i++
}
if v.MutableStateInDatabase != nil {
w, err = wire.NewValueString(*(v.MutableStateInDatabase)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 50, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a DescribeWorkflowExecutionResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a DescribeWorkflowExecutionResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v DescribeWorkflowExecutionResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *DescribeWorkflowExecutionResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.ShardId = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.HistoryAddr = &x
if err != nil {
return err
}
}
case 40:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.MutableStateInCache = &x
if err != nil {
return err
}
}
case 50:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.MutableStateInDatabase = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a DescribeWorkflowExecutionResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a DescribeWorkflowExecutionResponse struct could not be encoded.
func (v *DescribeWorkflowExecutionResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.ShardId != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.ShardId)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.HistoryAddr != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.HistoryAddr)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.MutableStateInCache != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 40, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.MutableStateInCache)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.MutableStateInDatabase != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 50, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.MutableStateInDatabase)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a DescribeWorkflowExecutionResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a DescribeWorkflowExecutionResponse struct could not be generated from the wire
// representation.
func (v *DescribeWorkflowExecutionResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.ShardId = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.HistoryAddr = &x
if err != nil {
return err
}
case fh.ID == 40 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.MutableStateInCache = &x
if err != nil {
return err
}
case fh.ID == 50 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.MutableStateInDatabase = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a DescribeWorkflowExecutionResponse
// struct.
func (v *DescribeWorkflowExecutionResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [4]string
i := 0
if v.ShardId != nil {
fields[i] = fmt.Sprintf("ShardId: %v", *(v.ShardId))
i++
}
if v.HistoryAddr != nil {
fields[i] = fmt.Sprintf("HistoryAddr: %v", *(v.HistoryAddr))
i++
}
if v.MutableStateInCache != nil {
fields[i] = fmt.Sprintf("MutableStateInCache: %v", *(v.MutableStateInCache))
i++
}
if v.MutableStateInDatabase != nil {
fields[i] = fmt.Sprintf("MutableStateInDatabase: %v", *(v.MutableStateInDatabase))
i++
}
return fmt.Sprintf("DescribeWorkflowExecutionResponse{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this DescribeWorkflowExecutionResponse match the
// provided DescribeWorkflowExecutionResponse.
//
// This function performs a deep comparison.
func (v *DescribeWorkflowExecutionResponse) Equals(rhs *DescribeWorkflowExecutionResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.ShardId, rhs.ShardId) {
return false
}
if !_String_EqualsPtr(v.HistoryAddr, rhs.HistoryAddr) {
return false
}
if !_String_EqualsPtr(v.MutableStateInCache, rhs.MutableStateInCache) {
return false
}
if !_String_EqualsPtr(v.MutableStateInDatabase, rhs.MutableStateInDatabase) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of DescribeWorkflowExecutionResponse.
func (v *DescribeWorkflowExecutionResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.ShardId != nil {
enc.AddString("shardId", *v.ShardId)
}
if v.HistoryAddr != nil {
enc.AddString("historyAddr", *v.HistoryAddr)
}
if v.MutableStateInCache != nil {
enc.AddString("mutableStateInCache", *v.MutableStateInCache)
}
if v.MutableStateInDatabase != nil {
enc.AddString("mutableStateInDatabase", *v.MutableStateInDatabase)
}
return err
}
// GetShardId returns the value of ShardId if it is set or its
// zero value if it is unset.
func (v *DescribeWorkflowExecutionResponse) GetShardId() (o string) {
if v != nil && v.ShardId != nil {
return *v.ShardId
}
return
}
// IsSetShardId returns true if ShardId is not nil.
func (v *DescribeWorkflowExecutionResponse) IsSetShardId() bool {
return v != nil && v.ShardId != nil
}
// GetHistoryAddr returns the value of HistoryAddr if it is set or its
// zero value if it is unset.
func (v *DescribeWorkflowExecutionResponse) GetHistoryAddr() (o string) {
if v != nil && v.HistoryAddr != nil {
return *v.HistoryAddr
}
return
}
// IsSetHistoryAddr returns true if HistoryAddr is not nil.
func (v *DescribeWorkflowExecutionResponse) IsSetHistoryAddr() bool {
return v != nil && v.HistoryAddr != nil
}
// GetMutableStateInCache returns the value of MutableStateInCache if it is set or its
// zero value if it is unset.
func (v *DescribeWorkflowExecutionResponse) GetMutableStateInCache() (o string) {
if v != nil && v.MutableStateInCache != nil {
return *v.MutableStateInCache
}
return
}
// IsSetMutableStateInCache returns true if MutableStateInCache is not nil.
func (v *DescribeWorkflowExecutionResponse) IsSetMutableStateInCache() bool {
return v != nil && v.MutableStateInCache != nil
}
// GetMutableStateInDatabase returns the value of MutableStateInDatabase if it is set or its
// zero value if it is unset.
func (v *DescribeWorkflowExecutionResponse) GetMutableStateInDatabase() (o string) {
if v != nil && v.MutableStateInDatabase != nil {
return *v.MutableStateInDatabase
}
return
}
// IsSetMutableStateInDatabase returns true if MutableStateInDatabase is not nil.
func (v *DescribeWorkflowExecutionResponse) IsSetMutableStateInDatabase() bool {
return v != nil && v.MutableStateInDatabase != nil
}
type GetDomainAsyncWorkflowConfiguratonRequest struct {
Domain *string `json:"domain,omitempty"`
}
// ToWire translates a GetDomainAsyncWorkflowConfiguratonRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetDomainAsyncWorkflowConfiguratonRequest) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.Domain != nil {
w, err = wire.NewValueString(*(v.Domain)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a GetDomainAsyncWorkflowConfiguratonRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetDomainAsyncWorkflowConfiguratonRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetDomainAsyncWorkflowConfiguratonRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetDomainAsyncWorkflowConfiguratonRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Domain = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetDomainAsyncWorkflowConfiguratonRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetDomainAsyncWorkflowConfiguratonRequest struct could not be encoded.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Domain != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Domain)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a GetDomainAsyncWorkflowConfiguratonRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetDomainAsyncWorkflowConfiguratonRequest struct could not be generated from the wire
// representation.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Domain = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetDomainAsyncWorkflowConfiguratonRequest
// struct.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.Domain != nil {
fields[i] = fmt.Sprintf("Domain: %v", *(v.Domain))
i++
}
return fmt.Sprintf("GetDomainAsyncWorkflowConfiguratonRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetDomainAsyncWorkflowConfiguratonRequest match the
// provided GetDomainAsyncWorkflowConfiguratonRequest.
//
// This function performs a deep comparison.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) Equals(rhs *GetDomainAsyncWorkflowConfiguratonRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Domain, rhs.Domain) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetDomainAsyncWorkflowConfiguratonRequest.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Domain != nil {
enc.AddString("domain", *v.Domain)
}
return err
}
// GetDomain returns the value of Domain if it is set or its
// zero value if it is unset.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) GetDomain() (o string) {
if v != nil && v.Domain != nil {
return *v.Domain
}
return
}
// IsSetDomain returns true if Domain is not nil.
func (v *GetDomainAsyncWorkflowConfiguratonRequest) IsSetDomain() bool {
return v != nil && v.Domain != nil
}
type GetDomainAsyncWorkflowConfiguratonResponse struct {
Configuration *shared.AsyncWorkflowConfiguration `json:"configuration,omitempty"`
}
// ToWire translates a GetDomainAsyncWorkflowConfiguratonResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetDomainAsyncWorkflowConfiguratonResponse) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.Configuration != nil {
w, err = v.Configuration.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _AsyncWorkflowConfiguration_Read(w wire.Value) (*shared.AsyncWorkflowConfiguration, error) {
var v shared.AsyncWorkflowConfiguration
err := v.FromWire(w)
return &v, err
}
// FromWire deserializes a GetDomainAsyncWorkflowConfiguratonResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetDomainAsyncWorkflowConfiguratonResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetDomainAsyncWorkflowConfiguratonResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetDomainAsyncWorkflowConfiguratonResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TStruct {
v.Configuration, err = _AsyncWorkflowConfiguration_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetDomainAsyncWorkflowConfiguratonResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetDomainAsyncWorkflowConfiguratonResponse struct could not be encoded.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Configuration != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TStruct}); err != nil {
return err
}
if err := v.Configuration.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _AsyncWorkflowConfiguration_Decode(sr stream.Reader) (*shared.AsyncWorkflowConfiguration, error) {
var v shared.AsyncWorkflowConfiguration
err := v.Decode(sr)
return &v, err
}
// Decode deserializes a GetDomainAsyncWorkflowConfiguratonResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetDomainAsyncWorkflowConfiguratonResponse struct could not be generated from the wire
// representation.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TStruct:
v.Configuration, err = _AsyncWorkflowConfiguration_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetDomainAsyncWorkflowConfiguratonResponse
// struct.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.Configuration != nil {
fields[i] = fmt.Sprintf("Configuration: %v", v.Configuration)
i++
}
return fmt.Sprintf("GetDomainAsyncWorkflowConfiguratonResponse{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetDomainAsyncWorkflowConfiguratonResponse match the
// provided GetDomainAsyncWorkflowConfiguratonResponse.
//
// This function performs a deep comparison.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) Equals(rhs *GetDomainAsyncWorkflowConfiguratonResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.Configuration == nil && rhs.Configuration == nil) || (v.Configuration != nil && rhs.Configuration != nil && v.Configuration.Equals(rhs.Configuration))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetDomainAsyncWorkflowConfiguratonResponse.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Configuration != nil {
err = multierr.Append(err, enc.AddObject("configuration", v.Configuration))
}
return err
}
// GetConfiguration returns the value of Configuration if it is set or its
// zero value if it is unset.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) GetConfiguration() (o *shared.AsyncWorkflowConfiguration) {
if v != nil && v.Configuration != nil {
return v.Configuration
}
return
}
// IsSetConfiguration returns true if Configuration is not nil.
func (v *GetDomainAsyncWorkflowConfiguratonResponse) IsSetConfiguration() bool {
return v != nil && v.Configuration != nil
}
type GetDomainIsolationGroupsRequest struct {
Domain *string `json:"domain,omitempty"`
}
// ToWire translates a GetDomainIsolationGroupsRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetDomainIsolationGroupsRequest) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.Domain != nil {
w, err = wire.NewValueString(*(v.Domain)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a GetDomainIsolationGroupsRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetDomainIsolationGroupsRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetDomainIsolationGroupsRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetDomainIsolationGroupsRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Domain = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetDomainIsolationGroupsRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetDomainIsolationGroupsRequest struct could not be encoded.
func (v *GetDomainIsolationGroupsRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Domain != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Domain)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a GetDomainIsolationGroupsRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetDomainIsolationGroupsRequest struct could not be generated from the wire
// representation.
func (v *GetDomainIsolationGroupsRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Domain = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetDomainIsolationGroupsRequest
// struct.
func (v *GetDomainIsolationGroupsRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.Domain != nil {
fields[i] = fmt.Sprintf("Domain: %v", *(v.Domain))
i++
}
return fmt.Sprintf("GetDomainIsolationGroupsRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetDomainIsolationGroupsRequest match the
// provided GetDomainIsolationGroupsRequest.
//
// This function performs a deep comparison.
func (v *GetDomainIsolationGroupsRequest) Equals(rhs *GetDomainIsolationGroupsRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Domain, rhs.Domain) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetDomainIsolationGroupsRequest.
func (v *GetDomainIsolationGroupsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Domain != nil {
enc.AddString("domain", *v.Domain)
}
return err
}
// GetDomain returns the value of Domain if it is set or its
// zero value if it is unset.
func (v *GetDomainIsolationGroupsRequest) GetDomain() (o string) {
if v != nil && v.Domain != nil {
return *v.Domain
}
return
}
// IsSetDomain returns true if Domain is not nil.
func (v *GetDomainIsolationGroupsRequest) IsSetDomain() bool {
return v != nil && v.Domain != nil
}
type GetDomainIsolationGroupsResponse struct {
IsolationGroups *shared.IsolationGroupConfiguration `json:"isolationGroups,omitempty"`
}
// ToWire translates a GetDomainIsolationGroupsResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetDomainIsolationGroupsResponse) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.IsolationGroups != nil {
w, err = v.IsolationGroups.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _IsolationGroupConfiguration_Read(w wire.Value) (*shared.IsolationGroupConfiguration, error) {
var v shared.IsolationGroupConfiguration
err := v.FromWire(w)
return &v, err
}
// FromWire deserializes a GetDomainIsolationGroupsResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetDomainIsolationGroupsResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetDomainIsolationGroupsResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetDomainIsolationGroupsResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TStruct {
v.IsolationGroups, err = _IsolationGroupConfiguration_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetDomainIsolationGroupsResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetDomainIsolationGroupsResponse struct could not be encoded.
func (v *GetDomainIsolationGroupsResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.IsolationGroups != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TStruct}); err != nil {
return err
}
if err := v.IsolationGroups.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _IsolationGroupConfiguration_Decode(sr stream.Reader) (*shared.IsolationGroupConfiguration, error) {
var v shared.IsolationGroupConfiguration
err := v.Decode(sr)
return &v, err
}
// Decode deserializes a GetDomainIsolationGroupsResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetDomainIsolationGroupsResponse struct could not be generated from the wire
// representation.
func (v *GetDomainIsolationGroupsResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TStruct:
v.IsolationGroups, err = _IsolationGroupConfiguration_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetDomainIsolationGroupsResponse
// struct.
func (v *GetDomainIsolationGroupsResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.IsolationGroups != nil {
fields[i] = fmt.Sprintf("IsolationGroups: %v", v.IsolationGroups)
i++
}
return fmt.Sprintf("GetDomainIsolationGroupsResponse{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetDomainIsolationGroupsResponse match the
// provided GetDomainIsolationGroupsResponse.
//
// This function performs a deep comparison.
func (v *GetDomainIsolationGroupsResponse) Equals(rhs *GetDomainIsolationGroupsResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.IsolationGroups == nil && rhs.IsolationGroups == nil) || (v.IsolationGroups != nil && rhs.IsolationGroups != nil && v.IsolationGroups.Equals(rhs.IsolationGroups))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetDomainIsolationGroupsResponse.
func (v *GetDomainIsolationGroupsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.IsolationGroups != nil {
err = multierr.Append(err, enc.AddObject("isolationGroups", v.IsolationGroups))
}
return err
}
// GetIsolationGroups returns the value of IsolationGroups if it is set or its
// zero value if it is unset.
func (v *GetDomainIsolationGroupsResponse) GetIsolationGroups() (o *shared.IsolationGroupConfiguration) {
if v != nil && v.IsolationGroups != nil {
return v.IsolationGroups
}
return
}
// IsSetIsolationGroups returns true if IsolationGroups is not nil.
func (v *GetDomainIsolationGroupsResponse) IsSetIsolationGroups() bool {
return v != nil && v.IsolationGroups != nil
}
type GetDynamicConfigRequest struct {
ConfigName *string `json:"configName,omitempty"`
Filters []*config.DynamicConfigFilter `json:"filters,omitempty"`
}
type _List_DynamicConfigFilter_ValueList []*config.DynamicConfigFilter
func (v _List_DynamicConfigFilter_ValueList) ForEach(f func(wire.Value) error) error {
for i, x := range v {
if x == nil {
return fmt.Errorf("invalid list '[]*config.DynamicConfigFilter', index [%v]: value is nil", i)
}
w, err := x.ToWire()
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_DynamicConfigFilter_ValueList) Size() int {
return len(v)
}
func (_List_DynamicConfigFilter_ValueList) ValueType() wire.Type {
return wire.TStruct
}
func (_List_DynamicConfigFilter_ValueList) Close() {}
// ToWire translates a GetDynamicConfigRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetDynamicConfigRequest) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.ConfigName != nil {
w, err = wire.NewValueString(*(v.ConfigName)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Filters != nil {
w, err = wire.NewValueList(_List_DynamicConfigFilter_ValueList(v.Filters)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _DynamicConfigFilter_Read(w wire.Value) (*config.DynamicConfigFilter, error) {
var v config.DynamicConfigFilter
err := v.FromWire(w)
return &v, err
}
func _List_DynamicConfigFilter_Read(l wire.ValueList) ([]*config.DynamicConfigFilter, error) {
if l.ValueType() != wire.TStruct {
return nil, nil
}
o := make([]*config.DynamicConfigFilter, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := _DynamicConfigFilter_Read(x)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
// FromWire deserializes a GetDynamicConfigRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetDynamicConfigRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetDynamicConfigRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetDynamicConfigRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.ConfigName = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TList {
v.Filters, err = _List_DynamicConfigFilter_Read(field.Value.GetList())
if err != nil {
return err
}
}
}
}
return nil
}
func _List_DynamicConfigFilter_Encode(val []*config.DynamicConfigFilter, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TStruct,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for i, v := range val {
if v == nil {
return fmt.Errorf("invalid list '[]*config.DynamicConfigFilter', index [%v]: value is nil", i)
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteListEnd()
}
// Encode serializes a GetDynamicConfigRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetDynamicConfigRequest struct could not be encoded.
func (v *GetDynamicConfigRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.ConfigName != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.ConfigName)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Filters != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TList}); err != nil {
return err
}
if err := _List_DynamicConfigFilter_Encode(v.Filters, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _DynamicConfigFilter_Decode(sr stream.Reader) (*config.DynamicConfigFilter, error) {
var v config.DynamicConfigFilter
err := v.Decode(sr)
return &v, err
}
func _List_DynamicConfigFilter_Decode(sr stream.Reader) ([]*config.DynamicConfigFilter, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TStruct {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]*config.DynamicConfigFilter, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := _DynamicConfigFilter_Decode(sr)
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
// Decode deserializes a GetDynamicConfigRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetDynamicConfigRequest struct could not be generated from the wire
// representation.
func (v *GetDynamicConfigRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.ConfigName = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TList:
v.Filters, err = _List_DynamicConfigFilter_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetDynamicConfigRequest
// struct.
func (v *GetDynamicConfigRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [2]string
i := 0
if v.ConfigName != nil {
fields[i] = fmt.Sprintf("ConfigName: %v", *(v.ConfigName))
i++
}
if v.Filters != nil {
fields[i] = fmt.Sprintf("Filters: %v", v.Filters)
i++
}
return fmt.Sprintf("GetDynamicConfigRequest{%v}", strings.Join(fields[:i], ", "))
}
func _List_DynamicConfigFilter_Equals(lhs, rhs []*config.DynamicConfigFilter) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !lv.Equals(rv) {
return false
}
}
return true
}
// Equals returns true if all the fields of this GetDynamicConfigRequest match the
// provided GetDynamicConfigRequest.
//
// This function performs a deep comparison.
func (v *GetDynamicConfigRequest) Equals(rhs *GetDynamicConfigRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.ConfigName, rhs.ConfigName) {
return false
}
if !((v.Filters == nil && rhs.Filters == nil) || (v.Filters != nil && rhs.Filters != nil && _List_DynamicConfigFilter_Equals(v.Filters, rhs.Filters))) {
return false
}
return true
}
type _List_DynamicConfigFilter_Zapper []*config.DynamicConfigFilter
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_DynamicConfigFilter_Zapper.
func (l _List_DynamicConfigFilter_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
err = multierr.Append(err, enc.AppendObject(v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetDynamicConfigRequest.
func (v *GetDynamicConfigRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.ConfigName != nil {
enc.AddString("configName", *v.ConfigName)
}
if v.Filters != nil {
err = multierr.Append(err, enc.AddArray("filters", (_List_DynamicConfigFilter_Zapper)(v.Filters)))
}
return err
}
// GetConfigName returns the value of ConfigName if it is set or its
// zero value if it is unset.
func (v *GetDynamicConfigRequest) GetConfigName() (o string) {
if v != nil && v.ConfigName != nil {
return *v.ConfigName
}
return
}
// IsSetConfigName returns true if ConfigName is not nil.
func (v *GetDynamicConfigRequest) IsSetConfigName() bool {
return v != nil && v.ConfigName != nil
}
// GetFilters returns the value of Filters if it is set or its
// zero value if it is unset.
func (v *GetDynamicConfigRequest) GetFilters() (o []*config.DynamicConfigFilter) {
if v != nil && v.Filters != nil {
return v.Filters
}
return
}
// IsSetFilters returns true if Filters is not nil.
func (v *GetDynamicConfigRequest) IsSetFilters() bool {
return v != nil && v.Filters != nil
}
type GetDynamicConfigResponse struct {
Value *shared.DataBlob `json:"value,omitempty"`
}
// ToWire translates a GetDynamicConfigResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetDynamicConfigResponse) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.Value != nil {
w, err = v.Value.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _DataBlob_Read(w wire.Value) (*shared.DataBlob, error) {
var v shared.DataBlob
err := v.FromWire(w)
return &v, err
}
// FromWire deserializes a GetDynamicConfigResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetDynamicConfigResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetDynamicConfigResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetDynamicConfigResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TStruct {
v.Value, err = _DataBlob_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetDynamicConfigResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetDynamicConfigResponse struct could not be encoded.
func (v *GetDynamicConfigResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Value != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TStruct}); err != nil {
return err
}
if err := v.Value.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _DataBlob_Decode(sr stream.Reader) (*shared.DataBlob, error) {
var v shared.DataBlob
err := v.Decode(sr)
return &v, err
}
// Decode deserializes a GetDynamicConfigResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetDynamicConfigResponse struct could not be generated from the wire
// representation.
func (v *GetDynamicConfigResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TStruct:
v.Value, err = _DataBlob_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetDynamicConfigResponse
// struct.
func (v *GetDynamicConfigResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.Value != nil {
fields[i] = fmt.Sprintf("Value: %v", v.Value)
i++
}
return fmt.Sprintf("GetDynamicConfigResponse{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetDynamicConfigResponse match the
// provided GetDynamicConfigResponse.
//
// This function performs a deep comparison.
func (v *GetDynamicConfigResponse) Equals(rhs *GetDynamicConfigResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.Value == nil && rhs.Value == nil) || (v.Value != nil && rhs.Value != nil && v.Value.Equals(rhs.Value))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetDynamicConfigResponse.
func (v *GetDynamicConfigResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Value != nil {
err = multierr.Append(err, enc.AddObject("value", v.Value))
}
return err
}
// GetValue returns the value of Value if it is set or its
// zero value if it is unset.
func (v *GetDynamicConfigResponse) GetValue() (o *shared.DataBlob) {
if v != nil && v.Value != nil {
return v.Value
}
return
}
// IsSetValue returns true if Value is not nil.
func (v *GetDynamicConfigResponse) IsSetValue() bool {
return v != nil && v.Value != nil
}
type GetGlobalIsolationGroupsRequest struct {
}
// ToWire translates a GetGlobalIsolationGroupsRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetGlobalIsolationGroupsRequest) ToWire() (wire.Value, error) {
var (
fields [0]wire.Field
i int = 0
)
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a GetGlobalIsolationGroupsRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetGlobalIsolationGroupsRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetGlobalIsolationGroupsRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetGlobalIsolationGroupsRequest) FromWire(w wire.Value) error {
for _, field := range w.GetStruct().Fields {
switch field.ID {
}
}
return nil
}
// Encode serializes a GetGlobalIsolationGroupsRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetGlobalIsolationGroupsRequest struct could not be encoded.
func (v *GetGlobalIsolationGroupsRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
return sw.WriteStructEnd()
}
// Decode deserializes a GetGlobalIsolationGroupsRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetGlobalIsolationGroupsRequest struct could not be generated from the wire
// representation.
func (v *GetGlobalIsolationGroupsRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetGlobalIsolationGroupsRequest
// struct.
func (v *GetGlobalIsolationGroupsRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [0]string
i := 0
return fmt.Sprintf("GetGlobalIsolationGroupsRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetGlobalIsolationGroupsRequest match the
// provided GetGlobalIsolationGroupsRequest.
//
// This function performs a deep comparison.
func (v *GetGlobalIsolationGroupsRequest) Equals(rhs *GetGlobalIsolationGroupsRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetGlobalIsolationGroupsRequest.
func (v *GetGlobalIsolationGroupsRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
return err
}
type GetGlobalIsolationGroupsResponse struct {
IsolationGroups *shared.IsolationGroupConfiguration `json:"isolationGroups,omitempty"`
}
// ToWire translates a GetGlobalIsolationGroupsResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetGlobalIsolationGroupsResponse) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.IsolationGroups != nil {
w, err = v.IsolationGroups.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a GetGlobalIsolationGroupsResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetGlobalIsolationGroupsResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetGlobalIsolationGroupsResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetGlobalIsolationGroupsResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TStruct {
v.IsolationGroups, err = _IsolationGroupConfiguration_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetGlobalIsolationGroupsResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetGlobalIsolationGroupsResponse struct could not be encoded.
func (v *GetGlobalIsolationGroupsResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.IsolationGroups != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TStruct}); err != nil {
return err
}
if err := v.IsolationGroups.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a GetGlobalIsolationGroupsResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetGlobalIsolationGroupsResponse struct could not be generated from the wire
// representation.
func (v *GetGlobalIsolationGroupsResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TStruct:
v.IsolationGroups, err = _IsolationGroupConfiguration_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetGlobalIsolationGroupsResponse
// struct.
func (v *GetGlobalIsolationGroupsResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.IsolationGroups != nil {
fields[i] = fmt.Sprintf("IsolationGroups: %v", v.IsolationGroups)
i++
}
return fmt.Sprintf("GetGlobalIsolationGroupsResponse{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this GetGlobalIsolationGroupsResponse match the
// provided GetGlobalIsolationGroupsResponse.
//
// This function performs a deep comparison.
func (v *GetGlobalIsolationGroupsResponse) Equals(rhs *GetGlobalIsolationGroupsResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.IsolationGroups == nil && rhs.IsolationGroups == nil) || (v.IsolationGroups != nil && rhs.IsolationGroups != nil && v.IsolationGroups.Equals(rhs.IsolationGroups))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetGlobalIsolationGroupsResponse.
func (v *GetGlobalIsolationGroupsResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.IsolationGroups != nil {
err = multierr.Append(err, enc.AddObject("isolationGroups", v.IsolationGroups))
}
return err
}
// GetIsolationGroups returns the value of IsolationGroups if it is set or its
// zero value if it is unset.
func (v *GetGlobalIsolationGroupsResponse) GetIsolationGroups() (o *shared.IsolationGroupConfiguration) {
if v != nil && v.IsolationGroups != nil {
return v.IsolationGroups
}
return
}
// IsSetIsolationGroups returns true if IsolationGroups is not nil.
func (v *GetGlobalIsolationGroupsResponse) IsSetIsolationGroups() bool {
return v != nil && v.IsolationGroups != nil
}
// StartEventId defines the beginning of the event to fetch. The first event is exclusive.
// EndEventId and EndEventVersion defines the end of the event to fetch. The end event is exclusive.
type GetWorkflowExecutionRawHistoryV2Request struct {
Domain *string `json:"domain,omitempty"`
Execution *shared.WorkflowExecution `json:"execution,omitempty"`
StartEventId *int64 `json:"startEventId,omitempty"`
StartEventVersion *int64 `json:"startEventVersion,omitempty"`
EndEventId *int64 `json:"endEventId,omitempty"`
EndEventVersion *int64 `json:"endEventVersion,omitempty"`
MaximumPageSize *int32 `json:"maximumPageSize,omitempty"`
NextPageToken []byte `json:"nextPageToken,omitempty"`
}
// ToWire translates a GetWorkflowExecutionRawHistoryV2Request struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetWorkflowExecutionRawHistoryV2Request) ToWire() (wire.Value, error) {
var (
fields [8]wire.Field
i int = 0
w wire.Value
err error
)
if v.Domain != nil {
w, err = wire.NewValueString(*(v.Domain)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Execution != nil {
w, err = v.Execution.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.StartEventId != nil {
w, err = wire.NewValueI64(*(v.StartEventId)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
if v.StartEventVersion != nil {
w, err = wire.NewValueI64(*(v.StartEventVersion)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 40, Value: w}
i++
}
if v.EndEventId != nil {
w, err = wire.NewValueI64(*(v.EndEventId)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 50, Value: w}
i++
}
if v.EndEventVersion != nil {
w, err = wire.NewValueI64(*(v.EndEventVersion)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 60, Value: w}
i++
}
if v.MaximumPageSize != nil {
w, err = wire.NewValueI32(*(v.MaximumPageSize)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 70, Value: w}
i++
}
if v.NextPageToken != nil {
w, err = wire.NewValueBinary(v.NextPageToken), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 80, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a GetWorkflowExecutionRawHistoryV2Request struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetWorkflowExecutionRawHistoryV2Request struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetWorkflowExecutionRawHistoryV2Request
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetWorkflowExecutionRawHistoryV2Request) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Domain = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TStruct {
v.Execution, err = _WorkflowExecution_Read(field.Value)
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TI64 {
var x int64
x, err = field.Value.GetI64(), error(nil)
v.StartEventId = &x
if err != nil {
return err
}
}
case 40:
if field.Value.Type() == wire.TI64 {
var x int64
x, err = field.Value.GetI64(), error(nil)
v.StartEventVersion = &x
if err != nil {
return err
}
}
case 50:
if field.Value.Type() == wire.TI64 {
var x int64
x, err = field.Value.GetI64(), error(nil)
v.EndEventId = &x
if err != nil {
return err
}
}
case 60:
if field.Value.Type() == wire.TI64 {
var x int64
x, err = field.Value.GetI64(), error(nil)
v.EndEventVersion = &x
if err != nil {
return err
}
}
case 70:
if field.Value.Type() == wire.TI32 {
var x int32
x, err = field.Value.GetI32(), error(nil)
v.MaximumPageSize = &x
if err != nil {
return err
}
}
case 80:
if field.Value.Type() == wire.TBinary {
v.NextPageToken, err = field.Value.GetBinary(), error(nil)
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a GetWorkflowExecutionRawHistoryV2Request struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetWorkflowExecutionRawHistoryV2Request struct could not be encoded.
func (v *GetWorkflowExecutionRawHistoryV2Request) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Domain != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Domain)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Execution != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TStruct}); err != nil {
return err
}
if err := v.Execution.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.StartEventId != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TI64}); err != nil {
return err
}
if err := sw.WriteInt64(*(v.StartEventId)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.StartEventVersion != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 40, Type: wire.TI64}); err != nil {
return err
}
if err := sw.WriteInt64(*(v.StartEventVersion)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.EndEventId != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 50, Type: wire.TI64}); err != nil {
return err
}
if err := sw.WriteInt64(*(v.EndEventId)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.EndEventVersion != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 60, Type: wire.TI64}); err != nil {
return err
}
if err := sw.WriteInt64(*(v.EndEventVersion)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.MaximumPageSize != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 70, Type: wire.TI32}); err != nil {
return err
}
if err := sw.WriteInt32(*(v.MaximumPageSize)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.NextPageToken != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 80, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteBinary(v.NextPageToken); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a GetWorkflowExecutionRawHistoryV2Request struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetWorkflowExecutionRawHistoryV2Request struct could not be generated from the wire
// representation.
func (v *GetWorkflowExecutionRawHistoryV2Request) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Domain = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TStruct:
v.Execution, err = _WorkflowExecution_Decode(sr)
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TI64:
var x int64
x, err = sr.ReadInt64()
v.StartEventId = &x
if err != nil {
return err
}
case fh.ID == 40 && fh.Type == wire.TI64:
var x int64
x, err = sr.ReadInt64()
v.StartEventVersion = &x
if err != nil {
return err
}
case fh.ID == 50 && fh.Type == wire.TI64:
var x int64
x, err = sr.ReadInt64()
v.EndEventId = &x
if err != nil {
return err
}
case fh.ID == 60 && fh.Type == wire.TI64:
var x int64
x, err = sr.ReadInt64()
v.EndEventVersion = &x
if err != nil {
return err
}
case fh.ID == 70 && fh.Type == wire.TI32:
var x int32
x, err = sr.ReadInt32()
v.MaximumPageSize = &x
if err != nil {
return err
}
case fh.ID == 80 && fh.Type == wire.TBinary:
v.NextPageToken, err = sr.ReadBinary()
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetWorkflowExecutionRawHistoryV2Request
// struct.
func (v *GetWorkflowExecutionRawHistoryV2Request) String() string {
if v == nil {
return "<nil>"
}
var fields [8]string
i := 0
if v.Domain != nil {
fields[i] = fmt.Sprintf("Domain: %v", *(v.Domain))
i++
}
if v.Execution != nil {
fields[i] = fmt.Sprintf("Execution: %v", v.Execution)
i++
}
if v.StartEventId != nil {
fields[i] = fmt.Sprintf("StartEventId: %v", *(v.StartEventId))
i++
}
if v.StartEventVersion != nil {
fields[i] = fmt.Sprintf("StartEventVersion: %v", *(v.StartEventVersion))
i++
}
if v.EndEventId != nil {
fields[i] = fmt.Sprintf("EndEventId: %v", *(v.EndEventId))
i++
}
if v.EndEventVersion != nil {
fields[i] = fmt.Sprintf("EndEventVersion: %v", *(v.EndEventVersion))
i++
}
if v.MaximumPageSize != nil {
fields[i] = fmt.Sprintf("MaximumPageSize: %v", *(v.MaximumPageSize))
i++
}
if v.NextPageToken != nil {
fields[i] = fmt.Sprintf("NextPageToken: %v", v.NextPageToken)
i++
}
return fmt.Sprintf("GetWorkflowExecutionRawHistoryV2Request{%v}", strings.Join(fields[:i], ", "))
}
func _I64_EqualsPtr(lhs, rhs *int64) bool {
if lhs != nil && rhs != nil {
x := *lhs
y := *rhs
return (x == y)
}
return lhs == nil && rhs == nil
}
func _I32_EqualsPtr(lhs, rhs *int32) bool {
if lhs != nil && rhs != nil {
x := *lhs
y := *rhs
return (x == y)
}
return lhs == nil && rhs == nil
}
// Equals returns true if all the fields of this GetWorkflowExecutionRawHistoryV2Request match the
// provided GetWorkflowExecutionRawHistoryV2Request.
//
// This function performs a deep comparison.
func (v *GetWorkflowExecutionRawHistoryV2Request) Equals(rhs *GetWorkflowExecutionRawHistoryV2Request) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Domain, rhs.Domain) {
return false
}
if !((v.Execution == nil && rhs.Execution == nil) || (v.Execution != nil && rhs.Execution != nil && v.Execution.Equals(rhs.Execution))) {
return false
}
if !_I64_EqualsPtr(v.StartEventId, rhs.StartEventId) {
return false
}
if !_I64_EqualsPtr(v.StartEventVersion, rhs.StartEventVersion) {
return false
}
if !_I64_EqualsPtr(v.EndEventId, rhs.EndEventId) {
return false
}
if !_I64_EqualsPtr(v.EndEventVersion, rhs.EndEventVersion) {
return false
}
if !_I32_EqualsPtr(v.MaximumPageSize, rhs.MaximumPageSize) {
return false
}
if !((v.NextPageToken == nil && rhs.NextPageToken == nil) || (v.NextPageToken != nil && rhs.NextPageToken != nil && bytes.Equal(v.NextPageToken, rhs.NextPageToken))) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetWorkflowExecutionRawHistoryV2Request.
func (v *GetWorkflowExecutionRawHistoryV2Request) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Domain != nil {
enc.AddString("domain", *v.Domain)
}
if v.Execution != nil {
err = multierr.Append(err, enc.AddObject("execution", v.Execution))
}
if v.StartEventId != nil {
enc.AddInt64("startEventId", *v.StartEventId)
}
if v.StartEventVersion != nil {
enc.AddInt64("startEventVersion", *v.StartEventVersion)
}
if v.EndEventId != nil {
enc.AddInt64("endEventId", *v.EndEventId)
}
if v.EndEventVersion != nil {
enc.AddInt64("endEventVersion", *v.EndEventVersion)
}
if v.MaximumPageSize != nil {
enc.AddInt32("maximumPageSize", *v.MaximumPageSize)
}
if v.NextPageToken != nil {
enc.AddString("nextPageToken", base64.StdEncoding.EncodeToString(v.NextPageToken))
}
return err
}
// GetDomain returns the value of Domain if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetDomain() (o string) {
if v != nil && v.Domain != nil {
return *v.Domain
}
return
}
// IsSetDomain returns true if Domain is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetDomain() bool {
return v != nil && v.Domain != nil
}
// GetExecution returns the value of Execution if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetExecution() (o *shared.WorkflowExecution) {
if v != nil && v.Execution != nil {
return v.Execution
}
return
}
// IsSetExecution returns true if Execution is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetExecution() bool {
return v != nil && v.Execution != nil
}
// GetStartEventId returns the value of StartEventId if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetStartEventId() (o int64) {
if v != nil && v.StartEventId != nil {
return *v.StartEventId
}
return
}
// IsSetStartEventId returns true if StartEventId is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetStartEventId() bool {
return v != nil && v.StartEventId != nil
}
// GetStartEventVersion returns the value of StartEventVersion if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetStartEventVersion() (o int64) {
if v != nil && v.StartEventVersion != nil {
return *v.StartEventVersion
}
return
}
// IsSetStartEventVersion returns true if StartEventVersion is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetStartEventVersion() bool {
return v != nil && v.StartEventVersion != nil
}
// GetEndEventId returns the value of EndEventId if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetEndEventId() (o int64) {
if v != nil && v.EndEventId != nil {
return *v.EndEventId
}
return
}
// IsSetEndEventId returns true if EndEventId is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetEndEventId() bool {
return v != nil && v.EndEventId != nil
}
// GetEndEventVersion returns the value of EndEventVersion if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetEndEventVersion() (o int64) {
if v != nil && v.EndEventVersion != nil {
return *v.EndEventVersion
}
return
}
// IsSetEndEventVersion returns true if EndEventVersion is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetEndEventVersion() bool {
return v != nil && v.EndEventVersion != nil
}
// GetMaximumPageSize returns the value of MaximumPageSize if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetMaximumPageSize() (o int32) {
if v != nil && v.MaximumPageSize != nil {
return *v.MaximumPageSize
}
return
}
// IsSetMaximumPageSize returns true if MaximumPageSize is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetMaximumPageSize() bool {
return v != nil && v.MaximumPageSize != nil
}
// GetNextPageToken returns the value of NextPageToken if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Request) GetNextPageToken() (o []byte) {
if v != nil && v.NextPageToken != nil {
return v.NextPageToken
}
return
}
// IsSetNextPageToken returns true if NextPageToken is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetNextPageToken() bool {
return v != nil && v.NextPageToken != nil
}
type GetWorkflowExecutionRawHistoryV2Response struct {
NextPageToken []byte `json:"nextPageToken,omitempty"`
HistoryBatches []*shared.DataBlob `json:"historyBatches,omitempty"`
VersionHistory *shared.VersionHistory `json:"versionHistory,omitempty"`
}
type _List_DataBlob_ValueList []*shared.DataBlob
func (v _List_DataBlob_ValueList) ForEach(f func(wire.Value) error) error {
for i, x := range v {
if x == nil {
return fmt.Errorf("invalid list '[]*shared.DataBlob', index [%v]: value is nil", i)
}
w, err := x.ToWire()
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_DataBlob_ValueList) Size() int {
return len(v)
}
func (_List_DataBlob_ValueList) ValueType() wire.Type {
return wire.TStruct
}
func (_List_DataBlob_ValueList) Close() {}
// ToWire translates a GetWorkflowExecutionRawHistoryV2Response struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *GetWorkflowExecutionRawHistoryV2Response) ToWire() (wire.Value, error) {
var (
fields [3]wire.Field
i int = 0
w wire.Value
err error
)
if v.NextPageToken != nil {
w, err = wire.NewValueBinary(v.NextPageToken), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.HistoryBatches != nil {
w, err = wire.NewValueList(_List_DataBlob_ValueList(v.HistoryBatches)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.VersionHistory != nil {
w, err = v.VersionHistory.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _List_DataBlob_Read(l wire.ValueList) ([]*shared.DataBlob, error) {
if l.ValueType() != wire.TStruct {
return nil, nil
}
o := make([]*shared.DataBlob, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := _DataBlob_Read(x)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
func _VersionHistory_Read(w wire.Value) (*shared.VersionHistory, error) {
var v shared.VersionHistory
err := v.FromWire(w)
return &v, err
}
// FromWire deserializes a GetWorkflowExecutionRawHistoryV2Response struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a GetWorkflowExecutionRawHistoryV2Response struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v GetWorkflowExecutionRawHistoryV2Response
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *GetWorkflowExecutionRawHistoryV2Response) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
v.NextPageToken, err = field.Value.GetBinary(), error(nil)
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TList {
v.HistoryBatches, err = _List_DataBlob_Read(field.Value.GetList())
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TStruct {
v.VersionHistory, err = _VersionHistory_Read(field.Value)
if err != nil {
return err
}
}
}
}
return nil
}
func _List_DataBlob_Encode(val []*shared.DataBlob, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TStruct,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for i, v := range val {
if v == nil {
return fmt.Errorf("invalid list '[]*shared.DataBlob', index [%v]: value is nil", i)
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteListEnd()
}
// Encode serializes a GetWorkflowExecutionRawHistoryV2Response struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a GetWorkflowExecutionRawHistoryV2Response struct could not be encoded.
func (v *GetWorkflowExecutionRawHistoryV2Response) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.NextPageToken != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteBinary(v.NextPageToken); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.HistoryBatches != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TList}); err != nil {
return err
}
if err := _List_DataBlob_Encode(v.HistoryBatches, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.VersionHistory != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TStruct}); err != nil {
return err
}
if err := v.VersionHistory.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _List_DataBlob_Decode(sr stream.Reader) ([]*shared.DataBlob, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TStruct {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]*shared.DataBlob, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := _DataBlob_Decode(sr)
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
func _VersionHistory_Decode(sr stream.Reader) (*shared.VersionHistory, error) {
var v shared.VersionHistory
err := v.Decode(sr)
return &v, err
}
// Decode deserializes a GetWorkflowExecutionRawHistoryV2Response struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a GetWorkflowExecutionRawHistoryV2Response struct could not be generated from the wire
// representation.
func (v *GetWorkflowExecutionRawHistoryV2Response) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
v.NextPageToken, err = sr.ReadBinary()
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TList:
v.HistoryBatches, err = _List_DataBlob_Decode(sr)
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TStruct:
v.VersionHistory, err = _VersionHistory_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a GetWorkflowExecutionRawHistoryV2Response
// struct.
func (v *GetWorkflowExecutionRawHistoryV2Response) String() string {
if v == nil {
return "<nil>"
}
var fields [3]string
i := 0
if v.NextPageToken != nil {
fields[i] = fmt.Sprintf("NextPageToken: %v", v.NextPageToken)
i++
}
if v.HistoryBatches != nil {
fields[i] = fmt.Sprintf("HistoryBatches: %v", v.HistoryBatches)
i++
}
if v.VersionHistory != nil {
fields[i] = fmt.Sprintf("VersionHistory: %v", v.VersionHistory)
i++
}
return fmt.Sprintf("GetWorkflowExecutionRawHistoryV2Response{%v}", strings.Join(fields[:i], ", "))
}
func _List_DataBlob_Equals(lhs, rhs []*shared.DataBlob) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !lv.Equals(rv) {
return false
}
}
return true
}
// Equals returns true if all the fields of this GetWorkflowExecutionRawHistoryV2Response match the
// provided GetWorkflowExecutionRawHistoryV2Response.
//
// This function performs a deep comparison.
func (v *GetWorkflowExecutionRawHistoryV2Response) Equals(rhs *GetWorkflowExecutionRawHistoryV2Response) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.NextPageToken == nil && rhs.NextPageToken == nil) || (v.NextPageToken != nil && rhs.NextPageToken != nil && bytes.Equal(v.NextPageToken, rhs.NextPageToken))) {
return false
}
if !((v.HistoryBatches == nil && rhs.HistoryBatches == nil) || (v.HistoryBatches != nil && rhs.HistoryBatches != nil && _List_DataBlob_Equals(v.HistoryBatches, rhs.HistoryBatches))) {
return false
}
if !((v.VersionHistory == nil && rhs.VersionHistory == nil) || (v.VersionHistory != nil && rhs.VersionHistory != nil && v.VersionHistory.Equals(rhs.VersionHistory))) {
return false
}
return true
}
type _List_DataBlob_Zapper []*shared.DataBlob
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_DataBlob_Zapper.
func (l _List_DataBlob_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
err = multierr.Append(err, enc.AppendObject(v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of GetWorkflowExecutionRawHistoryV2Response.
func (v *GetWorkflowExecutionRawHistoryV2Response) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.NextPageToken != nil {
enc.AddString("nextPageToken", base64.StdEncoding.EncodeToString(v.NextPageToken))
}
if v.HistoryBatches != nil {
err = multierr.Append(err, enc.AddArray("historyBatches", (_List_DataBlob_Zapper)(v.HistoryBatches)))
}
if v.VersionHistory != nil {
err = multierr.Append(err, enc.AddObject("versionHistory", v.VersionHistory))
}
return err
}
// GetNextPageToken returns the value of NextPageToken if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Response) GetNextPageToken() (o []byte) {
if v != nil && v.NextPageToken != nil {
return v.NextPageToken
}
return
}
// IsSetNextPageToken returns true if NextPageToken is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Response) IsSetNextPageToken() bool {
return v != nil && v.NextPageToken != nil
}
// GetHistoryBatches returns the value of HistoryBatches if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Response) GetHistoryBatches() (o []*shared.DataBlob) {
if v != nil && v.HistoryBatches != nil {
return v.HistoryBatches
}
return
}
// IsSetHistoryBatches returns true if HistoryBatches is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Response) IsSetHistoryBatches() bool {
return v != nil && v.HistoryBatches != nil
}
// GetVersionHistory returns the value of VersionHistory if it is set or its
// zero value if it is unset.
func (v *GetWorkflowExecutionRawHistoryV2Response) GetVersionHistory() (o *shared.VersionHistory) {
if v != nil && v.VersionHistory != nil {
return v.VersionHistory
}
return
}
// IsSetVersionHistory returns true if VersionHistory is not nil.
func (v *GetWorkflowExecutionRawHistoryV2Response) IsSetVersionHistory() bool {
return v != nil && v.VersionHistory != nil
}
type HostInfo struct {
Identity *string `json:"Identity,omitempty"`
}
// ToWire translates a HostInfo struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *HostInfo) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.Identity != nil {
w, err = wire.NewValueString(*(v.Identity)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a HostInfo struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a HostInfo struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v HostInfo
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *HostInfo) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Identity = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a HostInfo struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a HostInfo struct could not be encoded.
func (v *HostInfo) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Identity != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Identity)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a HostInfo struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a HostInfo struct could not be generated from the wire
// representation.
func (v *HostInfo) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Identity = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a HostInfo
// struct.
func (v *HostInfo) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.Identity != nil {
fields[i] = fmt.Sprintf("Identity: %v", *(v.Identity))
i++
}
return fmt.Sprintf("HostInfo{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this HostInfo match the
// provided HostInfo.
//
// This function performs a deep comparison.
func (v *HostInfo) Equals(rhs *HostInfo) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Identity, rhs.Identity) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of HostInfo.
func (v *HostInfo) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Identity != nil {
enc.AddString("Identity", *v.Identity)
}
return err
}
// GetIdentity returns the value of Identity if it is set or its
// zero value if it is unset.
func (v *HostInfo) GetIdentity() (o string) {
if v != nil && v.Identity != nil {
return *v.Identity
}
return
}
// IsSetIdentity returns true if Identity is not nil.
func (v *HostInfo) IsSetIdentity() bool {
return v != nil && v.Identity != nil
}
type ListDynamicConfigRequest struct {
ConfigName *string `json:"configName,omitempty"`
}
// ToWire translates a ListDynamicConfigRequest struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *ListDynamicConfigRequest) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.ConfigName != nil {
w, err = wire.NewValueString(*(v.ConfigName)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a ListDynamicConfigRequest struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a ListDynamicConfigRequest struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v ListDynamicConfigRequest
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *ListDynamicConfigRequest) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.ConfigName = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a ListDynamicConfigRequest struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a ListDynamicConfigRequest struct could not be encoded.
func (v *ListDynamicConfigRequest) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.ConfigName != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.ConfigName)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a ListDynamicConfigRequest struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a ListDynamicConfigRequest struct could not be generated from the wire
// representation.
func (v *ListDynamicConfigRequest) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.ConfigName = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a ListDynamicConfigRequest
// struct.
func (v *ListDynamicConfigRequest) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.ConfigName != nil {
fields[i] = fmt.Sprintf("ConfigName: %v", *(v.ConfigName))
i++
}
return fmt.Sprintf("ListDynamicConfigRequest{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this ListDynamicConfigRequest match the
// provided ListDynamicConfigRequest.
//
// This function performs a deep comparison.
func (v *ListDynamicConfigRequest) Equals(rhs *ListDynamicConfigRequest) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.ConfigName, rhs.ConfigName) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of ListDynamicConfigRequest.
func (v *ListDynamicConfigRequest) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.ConfigName != nil {
enc.AddString("configName", *v.ConfigName)
}
return err
}
// GetConfigName returns the value of ConfigName if it is set or its
// zero value if it is unset.
func (v *ListDynamicConfigRequest) GetConfigName() (o string) {
if v != nil && v.ConfigName != nil {
return *v.ConfigName
}
return
}
// IsSetConfigName returns true if ConfigName is not nil.
func (v *ListDynamicConfigRequest) IsSetConfigName() bool {
return v != nil && v.ConfigName != nil
}
type ListDynamicConfigResponse struct {
Entries []*config.DynamicConfigEntry `json:"entries,omitempty"`
}
type _List_DynamicConfigEntry_ValueList []*config.DynamicConfigEntry
func (v _List_DynamicConfigEntry_ValueList) ForEach(f func(wire.Value) error) error {
for i, x := range v {
if x == nil {
return fmt.Errorf("invalid list '[]*config.DynamicConfigEntry', index [%v]: value is nil", i)
}
w, err := x.ToWire()
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_DynamicConfigEntry_ValueList) Size() int {
return len(v)
}
func (_List_DynamicConfigEntry_ValueList) ValueType() wire.Type {
return wire.TStruct
}
func (_List_DynamicConfigEntry_ValueList) Close() {}
// ToWire translates a ListDynamicConfigResponse struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *ListDynamicConfigResponse) ToWire() (wire.Value, error) {
var (
fields [1]wire.Field
i int = 0
w wire.Value
err error
)
if v.Entries != nil {
w, err = wire.NewValueList(_List_DynamicConfigEntry_ValueList(v.Entries)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _DynamicConfigEntry_Read(w wire.Value) (*config.DynamicConfigEntry, error) {
var v config.DynamicConfigEntry
err := v.FromWire(w)
return &v, err
}
func _List_DynamicConfigEntry_Read(l wire.ValueList) ([]*config.DynamicConfigEntry, error) {
if l.ValueType() != wire.TStruct {
return nil, nil
}
o := make([]*config.DynamicConfigEntry, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := _DynamicConfigEntry_Read(x)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
// FromWire deserializes a ListDynamicConfigResponse struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a ListDynamicConfigResponse struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v ListDynamicConfigResponse
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *ListDynamicConfigResponse) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TList {
v.Entries, err = _List_DynamicConfigEntry_Read(field.Value.GetList())
if err != nil {
return err
}
}
}
}
return nil
}
func _List_DynamicConfigEntry_Encode(val []*config.DynamicConfigEntry, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TStruct,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for i, v := range val {
if v == nil {
return fmt.Errorf("invalid list '[]*config.DynamicConfigEntry', index [%v]: value is nil", i)
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteListEnd()
}
// Encode serializes a ListDynamicConfigResponse struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a ListDynamicConfigResponse struct could not be encoded.
func (v *ListDynamicConfigResponse) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Entries != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TList}); err != nil {
return err
}
if err := _List_DynamicConfigEntry_Encode(v.Entries, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _DynamicConfigEntry_Decode(sr stream.Reader) (*config.DynamicConfigEntry, error) {
var v config.DynamicConfigEntry
err := v.Decode(sr)
return &v, err
}
func _List_DynamicConfigEntry_Decode(sr stream.Reader) ([]*config.DynamicConfigEntry, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TStruct {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]*config.DynamicConfigEntry, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := _DynamicConfigEntry_Decode(sr)
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
// Decode deserializes a ListDynamicConfigResponse struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a ListDynamicConfigResponse struct could not be generated from the wire
// representation.
func (v *ListDynamicConfigResponse) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TList:
v.Entries, err = _List_DynamicConfigEntry_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a ListDynamicConfigResponse
// struct.
func (v *ListDynamicConfigResponse) String() string {
if v == nil {
return "<nil>"
}
var fields [1]string
i := 0
if v.Entries != nil {
fields[i] = fmt.Sprintf("Entries: %v", v.Entries)
i++
}
return fmt.Sprintf("ListDynamicConfigResponse{%v}", strings.Join(fields[:i], ", "))
}
func _List_DynamicConfigEntry_Equals(lhs, rhs []*config.DynamicConfigEntry) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !lv.Equals(rv) {
return false
}
}
return true
}
// Equals returns true if all the fields of this ListDynamicConfigResponse match the
// provided ListDynamicConfigResponse.
//
// This function performs a deep comparison.
func (v *ListDynamicConfigResponse) Equals(rhs *ListDynamicConfigResponse) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.Entries == nil && rhs.Entries == nil) || (v.Entries != nil && rhs.Entries != nil && _List_DynamicConfigEntry_Equals(v.Entries, rhs.Entries))) {
return false
}
return true
}
type _List_DynamicConfigEntry_Zapper []*config.DynamicConfigEntry
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_DynamicConfigEntry_Zapper.
func (l _List_DynamicConfigEntry_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
err = multierr.Append(err, enc.AppendObject(v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of ListDynamicConfigResponse.
func (v *ListDynamicConfigResponse) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Entries != nil {
err = multierr.Append(err, enc.AddArray("entries", (_List_DynamicConfigEntry_Zapper)(v.Entries)))
}
return err
}
// GetEntries returns the value of Entries if it is set or its
// zero value if it is unset.
func (v *ListDynamicConfigResponse) GetEntries() (o []*config.DynamicConfigEntry) {
if v != nil && v.Entries != nil {
return v.Entries
}
return
}
// IsSetEntries returns true if Entries is not nil.
func (v *ListDynamicConfigResponse) IsSetEntries() bool {
return v != nil && v.Entries != nil
}
type MembershipInfo struct {
CurrentHost *HostInfo `json:"currentHost,omitempty"`
ReachableMembers []string `json:"reachableMembers,omitempty"`
Rings []*RingInfo `json:"rings,omitempty"`
}
type _List_String_ValueList []string
func (v _List_String_ValueList) ForEach(f func(wire.Value) error) error {
for _, x := range v {
w, err := wire.NewValueString(x), error(nil)
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_String_ValueList) Size() int {
return len(v)
}
func (_List_String_ValueList) ValueType() wire.Type {
return wire.TBinary
}
func (_List_String_ValueList) Close() {}
type _List_RingInfo_ValueList []*RingInfo
func (v _List_RingInfo_ValueList) ForEach(f func(wire.Value) error) error {
for i, x := range v {
if x == nil {
return fmt.Errorf("invalid list '[]*RingInfo', index [%v]: value is nil", i)
}
w, err := x.ToWire()
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_RingInfo_ValueList) Size() int {
return len(v)
}
func (_List_RingInfo_ValueList) ValueType() wire.Type {
return wire.TStruct
}
func (_List_RingInfo_ValueList) Close() {}
// ToWire translates a MembershipInfo struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *MembershipInfo) ToWire() (wire.Value, error) {
var (
fields [3]wire.Field
i int = 0
w wire.Value
err error
)
if v.CurrentHost != nil {
w, err = v.CurrentHost.ToWire()
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.ReachableMembers != nil {
w, err = wire.NewValueList(_List_String_ValueList(v.ReachableMembers)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.Rings != nil {
w, err = wire.NewValueList(_List_RingInfo_ValueList(v.Rings)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _HostInfo_Read(w wire.Value) (*HostInfo, error) {
var v HostInfo
err := v.FromWire(w)
return &v, err
}
func _List_String_Read(l wire.ValueList) ([]string, error) {
if l.ValueType() != wire.TBinary {
return nil, nil
}
o := make([]string, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := x.GetString(), error(nil)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
func _RingInfo_Read(w wire.Value) (*RingInfo, error) {
var v RingInfo
err := v.FromWire(w)
return &v, err
}
func _List_RingInfo_Read(l wire.ValueList) ([]*RingInfo, error) {
if l.ValueType() != wire.TStruct {
return nil, nil
}
o := make([]*RingInfo, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := _RingInfo_Read(x)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
// FromWire deserializes a MembershipInfo struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a MembershipInfo struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v MembershipInfo
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *MembershipInfo) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TStruct {
v.CurrentHost, err = _HostInfo_Read(field.Value)
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TList {
v.ReachableMembers, err = _List_String_Read(field.Value.GetList())
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TList {
v.Rings, err = _List_RingInfo_Read(field.Value.GetList())
if err != nil {
return err
}
}
}
}
return nil
}
func _List_String_Encode(val []string, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TBinary,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for _, v := range val {
if err := sw.WriteString(v); err != nil {
return err
}
}
return sw.WriteListEnd()
}
func _List_RingInfo_Encode(val []*RingInfo, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TStruct,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for i, v := range val {
if v == nil {
return fmt.Errorf("invalid list '[]*RingInfo', index [%v]: value is nil", i)
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteListEnd()
}
// Encode serializes a MembershipInfo struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a MembershipInfo struct could not be encoded.
func (v *MembershipInfo) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.CurrentHost != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TStruct}); err != nil {
return err
}
if err := v.CurrentHost.Encode(sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.ReachableMembers != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TList}); err != nil {
return err
}
if err := _List_String_Encode(v.ReachableMembers, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Rings != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TList}); err != nil {
return err
}
if err := _List_RingInfo_Encode(v.Rings, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _HostInfo_Decode(sr stream.Reader) (*HostInfo, error) {
var v HostInfo
err := v.Decode(sr)
return &v, err
}
func _List_String_Decode(sr stream.Reader) ([]string, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TBinary {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]string, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := sr.ReadString()
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
func _RingInfo_Decode(sr stream.Reader) (*RingInfo, error) {
var v RingInfo
err := v.Decode(sr)
return &v, err
}
func _List_RingInfo_Decode(sr stream.Reader) ([]*RingInfo, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TStruct {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]*RingInfo, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := _RingInfo_Decode(sr)
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
// Decode deserializes a MembershipInfo struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a MembershipInfo struct could not be generated from the wire
// representation.
func (v *MembershipInfo) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TStruct:
v.CurrentHost, err = _HostInfo_Decode(sr)
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TList:
v.ReachableMembers, err = _List_String_Decode(sr)
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TList:
v.Rings, err = _List_RingInfo_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a MembershipInfo
// struct.
func (v *MembershipInfo) String() string {
if v == nil {
return "<nil>"
}
var fields [3]string
i := 0
if v.CurrentHost != nil {
fields[i] = fmt.Sprintf("CurrentHost: %v", v.CurrentHost)
i++
}
if v.ReachableMembers != nil {
fields[i] = fmt.Sprintf("ReachableMembers: %v", v.ReachableMembers)
i++
}
if v.Rings != nil {
fields[i] = fmt.Sprintf("Rings: %v", v.Rings)
i++
}
return fmt.Sprintf("MembershipInfo{%v}", strings.Join(fields[:i], ", "))
}
func _List_String_Equals(lhs, rhs []string) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !(lv == rv) {
return false
}
}
return true
}
func _List_RingInfo_Equals(lhs, rhs []*RingInfo) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !lv.Equals(rv) {
return false
}
}
return true
}
// Equals returns true if all the fields of this MembershipInfo match the
// provided MembershipInfo.
//
// This function performs a deep comparison.
func (v *MembershipInfo) Equals(rhs *MembershipInfo) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !((v.CurrentHost == nil && rhs.CurrentHost == nil) || (v.CurrentHost != nil && rhs.CurrentHost != nil && v.CurrentHost.Equals(rhs.CurrentHost))) {
return false
}
if !((v.ReachableMembers == nil && rhs.ReachableMembers == nil) || (v.ReachableMembers != nil && rhs.ReachableMembers != nil && _List_String_Equals(v.ReachableMembers, rhs.ReachableMembers))) {
return false
}
if !((v.Rings == nil && rhs.Rings == nil) || (v.Rings != nil && rhs.Rings != nil && _List_RingInfo_Equals(v.Rings, rhs.Rings))) {
return false
}
return true
}
type _List_String_Zapper []string
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_String_Zapper.
func (l _List_String_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
enc.AppendString(v)
}
return err
}
type _List_RingInfo_Zapper []*RingInfo
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_RingInfo_Zapper.
func (l _List_RingInfo_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
err = multierr.Append(err, enc.AppendObject(v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of MembershipInfo.
func (v *MembershipInfo) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.CurrentHost != nil {
err = multierr.Append(err, enc.AddObject("currentHost", v.CurrentHost))
}
if v.ReachableMembers != nil {
err = multierr.Append(err, enc.AddArray("reachableMembers", (_List_String_Zapper)(v.ReachableMembers)))
}
if v.Rings != nil {
err = multierr.Append(err, enc.AddArray("rings", (_List_RingInfo_Zapper)(v.Rings)))
}
return err
}
// GetCurrentHost returns the value of CurrentHost if it is set or its
// zero value if it is unset.
func (v *MembershipInfo) GetCurrentHost() (o *HostInfo) {
if v != nil && v.CurrentHost != nil {
return v.CurrentHost
}
return
}
// IsSetCurrentHost returns true if CurrentHost is not nil.
func (v *MembershipInfo) IsSetCurrentHost() bool {
return v != nil && v.CurrentHost != nil
}
// GetReachableMembers returns the value of ReachableMembers if it is set or its
// zero value if it is unset.
func (v *MembershipInfo) GetReachableMembers() (o []string) {
if v != nil && v.ReachableMembers != nil {
return v.ReachableMembers
}
return
}
// IsSetReachableMembers returns true if ReachableMembers is not nil.
func (v *MembershipInfo) IsSetReachableMembers() bool {
return v != nil && v.ReachableMembers != nil
}
// GetRings returns the value of Rings if it is set or its
// zero value if it is unset.
func (v *MembershipInfo) GetRings() (o []*RingInfo) {
if v != nil && v.Rings != nil {
return v.Rings
}
return
}
// IsSetRings returns true if Rings is not nil.
func (v *MembershipInfo) IsSetRings() bool {
return v != nil && v.Rings != nil
}
type PersistenceFeature struct {
Key *string `json:"key,omitempty"`
Enabled *bool `json:"enabled,omitempty"`
}
// ToWire translates a PersistenceFeature struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *PersistenceFeature) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.Key != nil {
w, err = wire.NewValueString(*(v.Key)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Enabled != nil {
w, err = wire.NewValueBool(*(v.Enabled)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
// FromWire deserializes a PersistenceFeature struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a PersistenceFeature struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v PersistenceFeature
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *PersistenceFeature) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Key = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TBool {
var x bool
x, err = field.Value.GetBool(), error(nil)
v.Enabled = &x
if err != nil {
return err
}
}
}
}
return nil
}
// Encode serializes a PersistenceFeature struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a PersistenceFeature struct could not be encoded.
func (v *PersistenceFeature) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Key != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Key)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Enabled != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TBool}); err != nil {
return err
}
if err := sw.WriteBool(*(v.Enabled)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
// Decode deserializes a PersistenceFeature struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a PersistenceFeature struct could not be generated from the wire
// representation.
func (v *PersistenceFeature) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Key = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TBool:
var x bool
x, err = sr.ReadBool()
v.Enabled = &x
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a PersistenceFeature
// struct.
func (v *PersistenceFeature) String() string {
if v == nil {
return "<nil>"
}
var fields [2]string
i := 0
if v.Key != nil {
fields[i] = fmt.Sprintf("Key: %v", *(v.Key))
i++
}
if v.Enabled != nil {
fields[i] = fmt.Sprintf("Enabled: %v", *(v.Enabled))
i++
}
return fmt.Sprintf("PersistenceFeature{%v}", strings.Join(fields[:i], ", "))
}
// Equals returns true if all the fields of this PersistenceFeature match the
// provided PersistenceFeature.
//
// This function performs a deep comparison.
func (v *PersistenceFeature) Equals(rhs *PersistenceFeature) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Key, rhs.Key) {
return false
}
if !_Bool_EqualsPtr(v.Enabled, rhs.Enabled) {
return false
}
return true
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of PersistenceFeature.
func (v *PersistenceFeature) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Key != nil {
enc.AddString("key", *v.Key)
}
if v.Enabled != nil {
enc.AddBool("enabled", *v.Enabled)
}
return err
}
// GetKey returns the value of Key if it is set or its
// zero value if it is unset.
func (v *PersistenceFeature) GetKey() (o string) {
if v != nil && v.Key != nil {
return *v.Key
}
return
}
// IsSetKey returns true if Key is not nil.
func (v *PersistenceFeature) IsSetKey() bool {
return v != nil && v.Key != nil
}
// GetEnabled returns the value of Enabled if it is set or its
// zero value if it is unset.
func (v *PersistenceFeature) GetEnabled() (o bool) {
if v != nil && v.Enabled != nil {
return *v.Enabled
}
return
}
// IsSetEnabled returns true if Enabled is not nil.
func (v *PersistenceFeature) IsSetEnabled() bool {
return v != nil && v.Enabled != nil
}
type PersistenceInfo struct {
Backend *string `json:"backend,omitempty"`
Settings []*PersistenceSetting `json:"settings,omitempty"`
Features []*PersistenceFeature `json:"features,omitempty"`
}
type _List_PersistenceSetting_ValueList []*PersistenceSetting
func (v _List_PersistenceSetting_ValueList) ForEach(f func(wire.Value) error) error {
for i, x := range v {
if x == nil {
return fmt.Errorf("invalid list '[]*PersistenceSetting', index [%v]: value is nil", i)
}
w, err := x.ToWire()
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_PersistenceSetting_ValueList) Size() int {
return len(v)
}
func (_List_PersistenceSetting_ValueList) ValueType() wire.Type {
return wire.TStruct
}
func (_List_PersistenceSetting_ValueList) Close() {}
type _List_PersistenceFeature_ValueList []*PersistenceFeature
func (v _List_PersistenceFeature_ValueList) ForEach(f func(wire.Value) error) error {
for i, x := range v {
if x == nil {
return fmt.Errorf("invalid list '[]*PersistenceFeature', index [%v]: value is nil", i)
}
w, err := x.ToWire()
if err != nil {
return err
}
err = f(w)
if err != nil {
return err
}
}
return nil
}
func (v _List_PersistenceFeature_ValueList) Size() int {
return len(v)
}
func (_List_PersistenceFeature_ValueList) ValueType() wire.Type {
return wire.TStruct
}
func (_List_PersistenceFeature_ValueList) Close() {}
// ToWire translates a PersistenceInfo struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *PersistenceInfo) ToWire() (wire.Value, error) {
var (
fields [3]wire.Field
i int = 0
w wire.Value
err error
)
if v.Backend != nil {
w, err = wire.NewValueString(*(v.Backend)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 10, Value: w}
i++
}
if v.Settings != nil {
w, err = wire.NewValueList(_List_PersistenceSetting_ValueList(v.Settings)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 20, Value: w}
i++
}
if v.Features != nil {
w, err = wire.NewValueList(_List_PersistenceFeature_ValueList(v.Features)), error(nil)
if err != nil {
return w, err
}
fields[i] = wire.Field{ID: 30, Value: w}
i++
}
return wire.NewValueStruct(wire.Struct{Fields: fields[:i]}), nil
}
func _PersistenceSetting_Read(w wire.Value) (*PersistenceSetting, error) {
var v PersistenceSetting
err := v.FromWire(w)
return &v, err
}
func _List_PersistenceSetting_Read(l wire.ValueList) ([]*PersistenceSetting, error) {
if l.ValueType() != wire.TStruct {
return nil, nil
}
o := make([]*PersistenceSetting, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := _PersistenceSetting_Read(x)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
func _PersistenceFeature_Read(w wire.Value) (*PersistenceFeature, error) {
var v PersistenceFeature
err := v.FromWire(w)
return &v, err
}
func _List_PersistenceFeature_Read(l wire.ValueList) ([]*PersistenceFeature, error) {
if l.ValueType() != wire.TStruct {
return nil, nil
}
o := make([]*PersistenceFeature, 0, l.Size())
err := l.ForEach(func(x wire.Value) error {
i, err := _PersistenceFeature_Read(x)
if err != nil {
return err
}
o = append(o, i)
return nil
})
l.Close()
return o, err
}
// FromWire deserializes a PersistenceInfo struct from its Thrift-level
// representation. The Thrift-level representation may be obtained
// from a ThriftRW protocol implementation.
//
// An error is returned if we were unable to build a PersistenceInfo struct
// from the provided intermediate representation.
//
// x, err := binaryProtocol.Decode(reader, wire.TStruct)
// if err != nil {
// return nil, err
// }
//
// var v PersistenceInfo
// if err := v.FromWire(x); err != nil {
// return nil, err
// }
// return &v, nil
func (v *PersistenceInfo) FromWire(w wire.Value) error {
var err error
for _, field := range w.GetStruct().Fields {
switch field.ID {
case 10:
if field.Value.Type() == wire.TBinary {
var x string
x, err = field.Value.GetString(), error(nil)
v.Backend = &x
if err != nil {
return err
}
}
case 20:
if field.Value.Type() == wire.TList {
v.Settings, err = _List_PersistenceSetting_Read(field.Value.GetList())
if err != nil {
return err
}
}
case 30:
if field.Value.Type() == wire.TList {
v.Features, err = _List_PersistenceFeature_Read(field.Value.GetList())
if err != nil {
return err
}
}
}
}
return nil
}
func _List_PersistenceSetting_Encode(val []*PersistenceSetting, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TStruct,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for i, v := range val {
if v == nil {
return fmt.Errorf("invalid list '[]*PersistenceSetting', index [%v]: value is nil", i)
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteListEnd()
}
func _List_PersistenceFeature_Encode(val []*PersistenceFeature, sw stream.Writer) error {
lh := stream.ListHeader{
Type: wire.TStruct,
Length: len(val),
}
if err := sw.WriteListBegin(lh); err != nil {
return err
}
for i, v := range val {
if v == nil {
return fmt.Errorf("invalid list '[]*PersistenceFeature', index [%v]: value is nil", i)
}
if err := v.Encode(sw); err != nil {
return err
}
}
return sw.WriteListEnd()
}
// Encode serializes a PersistenceInfo struct directly into bytes, without going
// through an intermediary type.
//
// An error is returned if a PersistenceInfo struct could not be encoded.
func (v *PersistenceInfo) Encode(sw stream.Writer) error {
if err := sw.WriteStructBegin(); err != nil {
return err
}
if v.Backend != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 10, Type: wire.TBinary}); err != nil {
return err
}
if err := sw.WriteString(*(v.Backend)); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Settings != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 20, Type: wire.TList}); err != nil {
return err
}
if err := _List_PersistenceSetting_Encode(v.Settings, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
if v.Features != nil {
if err := sw.WriteFieldBegin(stream.FieldHeader{ID: 30, Type: wire.TList}); err != nil {
return err
}
if err := _List_PersistenceFeature_Encode(v.Features, sw); err != nil {
return err
}
if err := sw.WriteFieldEnd(); err != nil {
return err
}
}
return sw.WriteStructEnd()
}
func _PersistenceSetting_Decode(sr stream.Reader) (*PersistenceSetting, error) {
var v PersistenceSetting
err := v.Decode(sr)
return &v, err
}
func _List_PersistenceSetting_Decode(sr stream.Reader) ([]*PersistenceSetting, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TStruct {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]*PersistenceSetting, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := _PersistenceSetting_Decode(sr)
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
func _PersistenceFeature_Decode(sr stream.Reader) (*PersistenceFeature, error) {
var v PersistenceFeature
err := v.Decode(sr)
return &v, err
}
func _List_PersistenceFeature_Decode(sr stream.Reader) ([]*PersistenceFeature, error) {
lh, err := sr.ReadListBegin()
if err != nil {
return nil, err
}
if lh.Type != wire.TStruct {
for i := 0; i < lh.Length; i++ {
if err := sr.Skip(lh.Type); err != nil {
return nil, err
}
}
return nil, sr.ReadListEnd()
}
o := make([]*PersistenceFeature, 0, lh.Length)
for i := 0; i < lh.Length; i++ {
v, err := _PersistenceFeature_Decode(sr)
if err != nil {
return nil, err
}
o = append(o, v)
}
if err = sr.ReadListEnd(); err != nil {
return nil, err
}
return o, err
}
// Decode deserializes a PersistenceInfo struct directly from its Thrift-level
// representation, without going through an intemediary type.
//
// An error is returned if a PersistenceInfo struct could not be generated from the wire
// representation.
func (v *PersistenceInfo) Decode(sr stream.Reader) error {
if err := sr.ReadStructBegin(); err != nil {
return err
}
fh, ok, err := sr.ReadFieldBegin()
if err != nil {
return err
}
for ok {
switch {
case fh.ID == 10 && fh.Type == wire.TBinary:
var x string
x, err = sr.ReadString()
v.Backend = &x
if err != nil {
return err
}
case fh.ID == 20 && fh.Type == wire.TList:
v.Settings, err = _List_PersistenceSetting_Decode(sr)
if err != nil {
return err
}
case fh.ID == 30 && fh.Type == wire.TList:
v.Features, err = _List_PersistenceFeature_Decode(sr)
if err != nil {
return err
}
default:
if err := sr.Skip(fh.Type); err != nil {
return err
}
}
if err := sr.ReadFieldEnd(); err != nil {
return err
}
if fh, ok, err = sr.ReadFieldBegin(); err != nil {
return err
}
}
if err := sr.ReadStructEnd(); err != nil {
return err
}
return nil
}
// String returns a readable string representation of a PersistenceInfo
// struct.
func (v *PersistenceInfo) String() string {
if v == nil {
return "<nil>"
}
var fields [3]string
i := 0
if v.Backend != nil {
fields[i] = fmt.Sprintf("Backend: %v", *(v.Backend))
i++
}
if v.Settings != nil {
fields[i] = fmt.Sprintf("Settings: %v", v.Settings)
i++
}
if v.Features != nil {
fields[i] = fmt.Sprintf("Features: %v", v.Features)
i++
}
return fmt.Sprintf("PersistenceInfo{%v}", strings.Join(fields[:i], ", "))
}
func _List_PersistenceSetting_Equals(lhs, rhs []*PersistenceSetting) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !lv.Equals(rv) {
return false
}
}
return true
}
func _List_PersistenceFeature_Equals(lhs, rhs []*PersistenceFeature) bool {
if len(lhs) != len(rhs) {
return false
}
for i, lv := range lhs {
rv := rhs[i]
if !lv.Equals(rv) {
return false
}
}
return true
}
// Equals returns true if all the fields of this PersistenceInfo match the
// provided PersistenceInfo.
//
// This function performs a deep comparison.
func (v *PersistenceInfo) Equals(rhs *PersistenceInfo) bool {
if v == nil {
return rhs == nil
} else if rhs == nil {
return false
}
if !_String_EqualsPtr(v.Backend, rhs.Backend) {
return false
}
if !((v.Settings == nil && rhs.Settings == nil) || (v.Settings != nil && rhs.Settings != nil && _List_PersistenceSetting_Equals(v.Settings, rhs.Settings))) {
return false
}
if !((v.Features == nil && rhs.Features == nil) || (v.Features != nil && rhs.Features != nil && _List_PersistenceFeature_Equals(v.Features, rhs.Features))) {
return false
}
return true
}
type _List_PersistenceSetting_Zapper []*PersistenceSetting
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_PersistenceSetting_Zapper.
func (l _List_PersistenceSetting_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
err = multierr.Append(err, enc.AppendObject(v))
}
return err
}
type _List_PersistenceFeature_Zapper []*PersistenceFeature
// MarshalLogArray implements zapcore.ArrayMarshaler, enabling
// fast logging of _List_PersistenceFeature_Zapper.
func (l _List_PersistenceFeature_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder) (err error) {
for _, v := range l {
err = multierr.Append(err, enc.AppendObject(v))
}
return err
}
// MarshalLogObject implements zapcore.ObjectMarshaler, enabling
// fast logging of PersistenceInfo.
func (v *PersistenceInfo) MarshalLogObject(enc zapcore.ObjectEncoder) (err error) {
if v == nil {
return nil
}
if v.Backend != nil {
enc.AddString("backend", *v.Backend)
}
if v.Settings != nil {
err = multierr.Append(err, enc.AddArray("settings", (_List_PersistenceSetting_Zapper)(v.Settings)))
}
if v.Features != nil {
err = multierr.Append(err, enc.AddArray("features", (_List_PersistenceFeature_Zapper)(v.Features)))
}
return err
}
// GetBackend returns the value of Backend if it is set or its
// zero value if it is unset.
func (v *PersistenceInfo) GetBackend() (o string) {
if v != nil && v.Backend != nil {
return *v.Backend
}
return
}
// IsSetBackend returns true if Backend is not nil.
func (v *PersistenceInfo) IsSetBackend() bool {
return v != nil && v.Backend != nil
}
// GetSettings returns the value of Settings if it is set or its
// zero value if it is unset.
func (v *PersistenceInfo) GetSettings() (o []*PersistenceSetting) {
if v != nil && v.Settings != nil {
return v.Settings
}
return
}
// IsSetSettings returns true if Settings is not nil.
func (v *PersistenceInfo) IsSetSettings() bool {
return v != nil && v.Settings != nil
}
// GetFeatures returns the value of Features if it is set or its
// zero value if it is unset.
func (v *PersistenceInfo) GetFeatures() (o []*PersistenceFeature) {
if v != nil && v.Features != nil {
return v.Features
}
return
}
// IsSetFeatures returns true if Features is not nil.
func (v *PersistenceInfo) IsSetFeatures() bool {
return v != nil && v.Features != nil
}
type PersistenceSetting struct {
Key *string `json:"key,omitempty"`
Value *string `json:"value,omitempty"`
}
// ToWire translates a PersistenceSetting struct into a Thrift-level intermediate
// representation. This intermediate representation may be serialized
// into bytes using a ThriftRW protocol implementation.
//
// An error is returned if the struct or any of its fields failed to
// validate.
//
// x, err := v.ToWire()
// if err != nil {
// return err
// }
//
// if err := binaryProtocol.Encode(x, writer); err != nil {
// return err
// }
func (v *PersistenceSetting) ToWire() (wire.Value, error) {
var (
fields [2]wire.Field
i int = 0
w wire.Value
err error
)
if v.Key != nil {
w, err = wire.NewValueString(*(v.Key)), error(nil)
if err != nil {
return w, e
gitextract_vsx7kcnp/
├── .dockerignore
├── .envrc
├── .fossa.yml
├── .gen/
│ ├── go/
│ │ ├── admin/
│ │ │ ├── admin.go
│ │ │ ├── adminserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── adminservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── adminserviceserver/
│ │ │ │ └── server.go
│ │ │ ├── adminservicetest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── cadence/
│ │ │ ├── cadence.go
│ │ │ ├── types_yarpc.go
│ │ │ ├── workflowserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── workflowservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── workflowserviceserver/
│ │ │ │ └── server.go
│ │ │ └── workflowservicetest/
│ │ │ └── client.go
│ │ ├── checksum/
│ │ │ ├── checksum.go
│ │ │ └── types_yarpc.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── types_yarpc.go
│ │ ├── health/
│ │ │ ├── health.go
│ │ │ ├── metaclient/
│ │ │ │ └── client.go
│ │ │ ├── metafx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── metaserver/
│ │ │ │ └── server.go
│ │ │ ├── metatest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── history/
│ │ │ ├── history.go
│ │ │ ├── historyserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── historyservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── historyserviceserver/
│ │ │ │ └── server.go
│ │ │ ├── historyservicetest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── indexer/
│ │ │ ├── indexer.go
│ │ │ └── types_yarpc.go
│ │ ├── matching/
│ │ │ ├── matching.go
│ │ │ ├── matchingserviceclient/
│ │ │ │ └── client.go
│ │ │ ├── matchingservicefx/
│ │ │ │ ├── client.go
│ │ │ │ ├── doc.go
│ │ │ │ └── server.go
│ │ │ ├── matchingserviceserver/
│ │ │ │ └── server.go
│ │ │ ├── matchingservicetest/
│ │ │ │ └── client.go
│ │ │ └── types_yarpc.go
│ │ ├── replicator/
│ │ │ ├── replicator.go
│ │ │ └── types_yarpc.go
│ │ ├── shadower/
│ │ │ ├── shadower.go
│ │ │ └── types_yarpc.go
│ │ ├── shared/
│ │ │ ├── shared.go
│ │ │ └── types_yarpc.go
│ │ └── sqlblobs/
│ │ ├── sqlblobs.go
│ │ └── types_yarpc.go
│ └── proto/
│ ├── history/
│ │ └── v1/
│ │ ├── service.pb.go
│ │ └── service.pb.yarpc.go
│ ├── indexer/
│ │ └── v1/
│ │ ├── messages.pb.go
│ │ └── messages.pb.yarpc.go
│ ├── matching/
│ │ └── v1/
│ │ ├── service.pb.go
│ │ └── service.pb.yarpc.go
│ ├── sharddistributor/
│ │ └── v1/
│ │ ├── canary.pb.go
│ │ ├── canary.pb.yarpc.go
│ │ ├── executor.pb.go
│ │ ├── executor.pb.yarpc.go
│ │ ├── service.pb.go
│ │ └── service.pb.yarpc.go
│ └── shared/
│ └── v1/
│ ├── any.pb.go
│ ├── any.pb.yarpc.go
│ ├── error.pb.go
│ ├── error.pb.yarpc.go
│ ├── history.pb.go
│ ├── history.pb.yarpc.go
│ ├── tasklist.pb.go
│ ├── tasklist.pb.yarpc.go
│ ├── workflow.pb.go
│ └── workflow.pb.yarpc.go
├── .gitar/
│ └── rules/
│ ├── assign-maintainer-reviewer.md
│ ├── issue-linking-required.md
│ └── pr-description-quality.md
├── .gitattributes
├── .github/
│ ├── CODEOWNERS
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── feature_request.md
│ │ └── help_support.md
│ ├── dco.yml
│ ├── pull_request_guidance.md
│ ├── pull_request_template.md
│ └── workflows/
│ ├── breaking_change_pr_template.md
│ ├── breaking_change_reminder.yml
│ ├── ci-checks.yml
│ ├── codecov-on-master.yml
│ ├── codecov-on-pr.yml
│ ├── docker_publish.yml
│ ├── issue-validation.yml
│ ├── replication-simulation.yml
│ └── semantic-pr.yml
├── .gitignore
├── .gitmodules
├── ADOPTERS.md
├── CHANGELOG.md
├── CLAUDE.md
├── CONTRIBUTING.md
├── Dockerfile
├── LICENSE
├── MAINTAINERS.md
├── Makefile
├── NOTICE
├── PROPOSALS.md
├── README.md
├── RELEASES.md
├── bench/
│ ├── README.md
│ ├── lib/
│ │ ├── client.go
│ │ ├── config.go
│ │ ├── config_test.go
│ │ ├── context.go
│ │ ├── metrics.go
│ │ └── types.go
│ ├── load/
│ │ ├── basic/
│ │ │ ├── launchWorkflow.go
│ │ │ └── stressWorkflow.go
│ │ ├── cancellation/
│ │ │ └── workflow.go
│ │ ├── common/
│ │ │ ├── activities.go
│ │ │ ├── constants.go
│ │ │ └── helpers.go
│ │ ├── concurrentexec/
│ │ │ ├── batchWorkflow.go
│ │ │ └── launchWorkflow.go
│ │ ├── cron/
│ │ │ └── workflow.go
│ │ ├── signal/
│ │ │ └── workflow.go
│ │ └── timer/
│ │ ├── launchWorkflow.go
│ │ └── timerWorkflow.go
│ └── worker.go
├── canary/
│ ├── README.md
│ ├── batch.go
│ ├── canary.go
│ ├── cancellation.go
│ ├── client.go
│ ├── common.go
│ ├── concurrentExec.go
│ ├── config.go
│ ├── const.go
│ ├── cron.go
│ ├── crosscluster.go
│ ├── echo.go
│ ├── historyArchival.go
│ ├── localactivity.go
│ ├── metrics.go
│ ├── query.go
│ ├── reset.go
│ ├── retry.go
│ ├── runner.go
│ ├── sanity.go
│ ├── searchAttributes.go
│ ├── signal.go
│ ├── timeout.go
│ ├── visibility.go
│ ├── visibilityArchival.go
│ └── workflow_test.go
├── client/
│ ├── admin/
│ │ ├── interface.go
│ │ └── interface_mock.go
│ ├── clientBean.go
│ ├── clientBean_mock.go
│ ├── clientfactory.go
│ ├── frontend/
│ │ ├── interface.go
│ │ └── interface_mock.go
│ ├── history/
│ │ ├── client.go
│ │ ├── client_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── peer_resolver.go
│ │ ├── peer_resolver_mock.go
│ │ └── peer_resolver_test.go
│ ├── matching/
│ │ ├── client.go
│ │ ├── client_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── isolation_loadbalancer.go
│ │ ├── isolation_loadbalancer_test.go
│ │ ├── loadbalancer.go
│ │ ├── loadbalancer_mock.go
│ │ ├── loadbalancer_test.go
│ │ ├── multi_loadbalancer.go
│ │ ├── multi_loadbalancer_test.go
│ │ ├── partition_config_provider.go
│ │ ├── partition_config_provider_mock.go
│ │ ├── partition_config_provider_test.go
│ │ ├── peer_resolver.go
│ │ ├── peer_resolver_mock.go
│ │ ├── peer_resolver_test.go
│ │ ├── rr_loadbalancer.go
│ │ ├── rr_loadbalancer_test.go
│ │ ├── weighted_loadbalancer.go
│ │ └── weighted_loadbalancer_test.go
│ ├── sharddistributor/
│ │ ├── interface.go
│ │ └── interface_mock.go
│ ├── sharddistributorexecutor/
│ │ ├── executorinterface.go
│ │ └── executorinterface_mock.go
│ ├── templates/
│ │ ├── errorinjectors.tmpl
│ │ ├── grpc.tmpl
│ │ ├── metered.tmpl
│ │ ├── retry.tmpl
│ │ ├── thrift.tmpl
│ │ └── timeout.tmpl
│ └── wrappers/
│ ├── errorinjectors/
│ │ ├── admin_generated.go
│ │ ├── errorinjectors_test.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── sharddistributor_generated.go
│ │ └── sharddistributorexecutor_generated.go
│ ├── grpc/
│ │ ├── admin_generated.go
│ │ ├── constructor.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── sharddistributor_generated.go
│ │ └── sharddistributorexecutor_generated.go
│ ├── metered/
│ │ ├── admin_generated.go
│ │ ├── base.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── metered_test.go
│ │ ├── sharddistributor_generated.go
│ │ └── sharddistributorexecutor_generated.go
│ ├── retryable/
│ │ ├── admin_generated.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ ├── matching_generated.go
│ │ ├── sharddistributor_generated.go
│ │ ├── sharddistributorexecutor_generated.go
│ │ └── wrappers_test.go
│ ├── thrift/
│ │ ├── admin_generated.go
│ │ ├── constructor.go
│ │ ├── frontend_generated.go
│ │ ├── history_generated.go
│ │ └── matching_generated.go
│ └── timeout/
│ ├── admin_generated.go
│ ├── frontend_generated.go
│ ├── history_generated.go
│ ├── history_generated_test.go
│ ├── matching_generated.go
│ ├── sharddistributor_generated.go
│ ├── sharddistributorexecutor_generated.go
│ └── timeout.go
├── cmd/
│ ├── bench/
│ │ └── main.go
│ ├── canary/
│ │ └── main.go
│ ├── server/
│ │ ├── README.md
│ │ ├── cadence/
│ │ │ ├── cadence.go
│ │ │ ├── cadence_test.go
│ │ │ ├── fx.go
│ │ │ ├── fx_test.go
│ │ │ ├── server.go
│ │ │ ├── server_test.go
│ │ │ └── testdata/
│ │ │ └── config/
│ │ │ └── development.yaml
│ │ ├── go.mod
│ │ ├── go.sum
│ │ └── main.go
│ ├── sharddistributor-canary/
│ │ ├── main.go
│ │ └── main_test.go
│ └── tools/
│ ├── cassandra/
│ │ └── main.go
│ ├── cli/
│ │ └── main.go
│ ├── copyright/
│ │ └── licensegen.go
│ ├── releaser/
│ │ ├── internal/
│ │ │ ├── console/
│ │ │ │ ├── console.go
│ │ │ │ └── console_test.go
│ │ │ ├── fs/
│ │ │ │ └── fs.go
│ │ │ ├── git/
│ │ │ │ └── git.go
│ │ │ └── release/
│ │ │ ├── release.go
│ │ │ ├── release_mocks_test.go
│ │ │ ├── release_test.go
│ │ │ ├── scenario_test.go
│ │ │ ├── types.go
│ │ │ ├── validate_test.go
│ │ │ └── version_test.go
│ │ └── releaser.go
│ └── sql/
│ └── main.go
├── codecov.yml
├── common/
│ ├── activecluster/
│ │ ├── execution_manager_provider_mock.go
│ │ ├── manager.go
│ │ ├── manager_mock.go
│ │ ├── manager_test.go
│ │ └── types.go
│ ├── archiver/
│ │ ├── README.md
│ │ ├── URI.go
│ │ ├── URI_test.go
│ │ ├── archivalMetadata.go
│ │ ├── archivalMetadata_mock.go
│ │ ├── constants.go
│ │ ├── filestore/
│ │ │ ├── historyArchiver.go
│ │ │ ├── historyArchiver_test.go
│ │ │ ├── queryParser.go
│ │ │ ├── queryParser_mock.go
│ │ │ ├── queryParser_test.go
│ │ │ ├── util.go
│ │ │ ├── util_test.go
│ │ │ ├── visibilityArchiver.go
│ │ │ └── visibilityArchiver_test.go
│ │ ├── gcloud/
│ │ │ ├── README.md
│ │ │ ├── connector/
│ │ │ │ ├── client.go
│ │ │ │ ├── clientDelegate.go
│ │ │ │ ├── client_test.go
│ │ │ │ └── mocks/
│ │ │ │ ├── BucketHandleWrapper.go
│ │ │ │ ├── Client.go
│ │ │ │ ├── GcloudStorageClient.go
│ │ │ │ ├── ObjectHandleWrapper.go
│ │ │ │ ├── ObjectIteratorWrapper.go
│ │ │ │ ├── ReaderWrapper.go
│ │ │ │ └── WriterWrapper.go
│ │ │ ├── go.mod
│ │ │ ├── go.sum
│ │ │ ├── historyArchiver.go
│ │ │ ├── historyArchiver_test.go
│ │ │ ├── init.go
│ │ │ ├── queryParser.go
│ │ │ ├── queryParser_mock.go
│ │ │ ├── util.go
│ │ │ ├── util_test.go
│ │ │ ├── visibilityArchiver.go
│ │ │ └── visibilityArchiver_test.go
│ │ ├── historyIterator.go
│ │ ├── historyIterator_mock.go
│ │ ├── historyIterator_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── options.go
│ │ ├── provider/
│ │ │ ├── init.go
│ │ │ ├── noop_provider.go
│ │ │ ├── provider.go
│ │ │ └── provider_mock.go
│ │ ├── s3store/
│ │ │ ├── README.md
│ │ │ ├── historyArchiver.go
│ │ │ ├── historyArchiver_test.go
│ │ │ ├── mocks/
│ │ │ │ ├── S3API_generate.go
│ │ │ │ └── s3_api_mock.go
│ │ │ ├── queryParser.go
│ │ │ ├── queryParser_mock.go
│ │ │ ├── queryParser_test.go
│ │ │ ├── util.go
│ │ │ ├── visibilityArchiver.go
│ │ │ └── visibilityArchiver_test.go
│ │ ├── util.go
│ │ └── util_test.go
│ ├── asyncworkflow/
│ │ ├── queue/
│ │ │ ├── consumer/
│ │ │ │ ├── default_consumer.go
│ │ │ │ ├── default_consumer_test.go
│ │ │ │ └── errors.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── kafka/
│ │ │ │ ├── config.go
│ │ │ │ ├── config_test.go
│ │ │ │ ├── decoder.go
│ │ │ │ ├── decoder_test.go
│ │ │ │ ├── init.go
│ │ │ │ ├── queue.go
│ │ │ │ └── queue_test.go
│ │ │ ├── provider/
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── provider.go
│ │ │ │ └── provider_test.go
│ │ │ ├── provider.go
│ │ │ └── provider_test.go
│ │ └── queueconfigapi/
│ │ ├── handler.go
│ │ ├── handler_mock.go
│ │ ├── handler_test.go
│ │ └── interface.go
│ ├── authorization/
│ │ ├── README.md
│ │ ├── authority_mock.go
│ │ ├── authorizer.go
│ │ ├── authorizer_test.go
│ │ ├── factory.go
│ │ ├── factory_test.go
│ │ ├── nopAuthorizer.go
│ │ ├── oauthAuthorizer.go
│ │ ├── oauthAuthorizer_test.go
│ │ ├── scram_client.go
│ │ └── test_result
│ ├── backoff/
│ │ ├── cron.go
│ │ ├── cron_test.go
│ │ ├── jitter.go
│ │ ├── jitter_test.go
│ │ ├── retry.go
│ │ ├── retry_test.go
│ │ ├── retrypolicy.go
│ │ └── retrypolicy_test.go
│ ├── blobstore/
│ │ ├── client.go
│ │ ├── client_mock.go
│ │ ├── filestore/
│ │ │ ├── client.go
│ │ │ └── client_test.go
│ │ ├── retryable_client.go
│ │ └── retryable_client_test.go
│ ├── cache/
│ │ ├── ack_cache.go
│ │ ├── ack_cache_test.go
│ │ ├── budget.go
│ │ ├── budget_test.go
│ │ ├── cache.go
│ │ ├── domainCache.go
│ │ ├── domainCacheNoOp.go
│ │ ├── domainCache_mock.go
│ │ ├── domainCache_test.go
│ │ ├── interface_mock.go
│ │ ├── lru.go
│ │ ├── lru_test.go
│ │ ├── metricsScopeCache.go
│ │ ├── metricsScopeCache_test.go
│ │ ├── simple.go
│ │ └── simple_test.go
│ ├── checksum/
│ │ ├── crc.go
│ │ ├── crc_test.go
│ │ ├── ctc_benchmark_test.go
│ │ └── defs.go
│ ├── client/
│ │ ├── versionChecker.go
│ │ ├── versionChecker_mock.go
│ │ └── versionChecker_test.go
│ ├── clock/
│ │ ├── clockfx/
│ │ │ └── clockfx.go
│ │ ├── event_timer_gate.go
│ │ ├── event_timer_gate_test.go
│ │ ├── ratelimiter.go
│ │ ├── ratelimiter_bench_test.go
│ │ ├── ratelimiter_comparison_test.go
│ │ ├── ratelimiter_mock.go
│ │ ├── ratelimiter_test.go
│ │ ├── real_timer_benchmark_test.go
│ │ ├── sustain.go
│ │ ├── sustain_test.go
│ │ ├── testdata/
│ │ │ ├── amd_linux_go1.22.txt
│ │ │ └── m1_mac_go1.21.txt
│ │ ├── time_source.go
│ │ ├── timer_gate.go
│ │ ├── timer_gate_mock.go
│ │ └── timer_gate_test.go
│ ├── cluster/
│ │ ├── metadata.go
│ │ ├── metadata_test.go
│ │ ├── metadata_test_utils.go
│ │ ├── utils.go
│ │ └── utils_test.go
│ ├── codec/
│ │ ├── gob/
│ │ │ ├── gob.go
│ │ │ └── gob_test.go
│ │ ├── interface.go
│ │ ├── interfaces_mock.go
│ │ ├── version0_thriftrw.go
│ │ └── version0_thriftrw_test.go
│ ├── collection/
│ │ ├── channelPriorityQueue.go
│ │ ├── channelPriorityQueue_test.go
│ │ ├── concurrent_priority_queue.go
│ │ ├── concurrent_queue.go
│ │ ├── concurrent_queue_test.go
│ │ ├── concurrent_tx_map.go
│ │ ├── concurrent_tx_map_test.go
│ │ ├── interface.go
│ │ ├── iterator.go
│ │ ├── ordered_map.go
│ │ ├── ordered_map_test.go
│ │ ├── pagingIterator.go
│ │ ├── pagingIterator_test.go
│ │ ├── priority_queue.go
│ │ ├── priority_queue_test.go
│ │ └── util.go
│ ├── config/
│ │ ├── archival.go
│ │ ├── archival_test.go
│ │ ├── authorization.go
│ │ ├── authorization_test.go
│ │ ├── cluster.go
│ │ ├── cluster_test.go
│ │ ├── config.go
│ │ ├── config_test.go
│ │ ├── elasticsearch.go
│ │ ├── elasticsearch_test.go
│ │ ├── fx.go
│ │ ├── kafkaConfig.go
│ │ ├── loader.go
│ │ ├── loader_test.go
│ │ ├── log.go
│ │ ├── log_test.go
│ │ ├── metrics.go
│ │ ├── metrics_test.go
│ │ ├── persistence.go
│ │ ├── pinot.go
│ │ ├── pprof.go
│ │ ├── sasl.go
│ │ └── tls.go
│ ├── constants/
│ │ └── constants.go
│ ├── convert.go
│ ├── convert_test.go
│ ├── ctxutils/
│ │ ├── ctxutils.go
│ │ └── ctxutils_test.go
│ ├── daemon.go
│ ├── definition/
│ │ ├── indexedKeys.go
│ │ ├── indexedKeys_test.go
│ │ ├── resourceDeduplication.go
│ │ ├── resourceDeduplication_test.go
│ │ ├── workflowIdentifier.go
│ │ └── workflowidentifier_test.go
│ ├── domain/
│ │ ├── archivalConfigStateMachine.go
│ │ ├── archivalConfigStateMachine_test.go
│ │ ├── attrValidator.go
│ │ ├── attrValidator_test.go
│ │ ├── audit/
│ │ │ └── audit.go
│ │ ├── clusterattributes.go
│ │ ├── clusterattributes_test.go
│ │ ├── dlq_message_handler.go
│ │ ├── dlq_message_handler_mock.go
│ │ ├── dlq_message_handler_test.go
│ │ ├── errors.go
│ │ ├── failover_watcher.go
│ │ ├── failover_watcher_mock.go
│ │ ├── failover_watcher_test.go
│ │ ├── handler.go
│ │ ├── handler_MasterCluster_test.go
│ │ ├── handler_NotMasterCluster_test.go
│ │ ├── handler_integration_test.go
│ │ ├── handler_mock.go
│ │ ├── handler_test.go
│ │ ├── replicationTaskExecutor.go
│ │ ├── replicationTaskExecutor_integration_test.go
│ │ ├── replicationTaskExecutor_test.go
│ │ ├── replicationTaskHandler_mock.go
│ │ ├── replication_queue.go
│ │ ├── replication_queue_mock.go
│ │ ├── replication_queue_test.go
│ │ ├── transmissionTaskHandler.go
│ │ ├── transmissionTaskHandler_mock.go
│ │ └── transmissionTaskHandler_test.go
│ ├── dynamicconfig/
│ │ ├── clientInterface.go
│ │ ├── clientInterface_mock.go
│ │ ├── config/
│ │ │ └── testConfig.yaml
│ │ ├── config.go
│ │ ├── config_benchmark_test.go
│ │ ├── config_test.go
│ │ ├── configstore/
│ │ │ ├── config/
│ │ │ │ └── config.go
│ │ │ ├── config_store_client.go
│ │ │ ├── config_store_client_test.go
│ │ │ └── configstore_mock.go
│ │ ├── dynamicconfigfx/
│ │ │ ├── fx.go
│ │ │ └── fx_test.go
│ │ ├── dynamicproperties/
│ │ │ ├── config_mock.go
│ │ │ ├── constants.go
│ │ │ ├── constants_test.go
│ │ │ ├── definitions.go
│ │ │ ├── filter.go
│ │ │ └── utils_test.go
│ │ ├── file_based_client.go
│ │ ├── file_based_client_test.go
│ │ ├── inMemoryClient.go
│ │ ├── nopClient.go
│ │ └── quotas/
│ │ ├── dynamicratelimiterfactory.go
│ │ ├── dynamicratelimiterfactory_test.go
│ │ ├── fallbackdynamicratelimiterfactory.go
│ │ └── fallbackdynamicratelimiterfactory_test.go
│ ├── elasticsearch/
│ │ ├── bulk/
│ │ │ ├── backoff.go
│ │ │ ├── bulk.go
│ │ │ ├── bulk_delete_request.go
│ │ │ ├── bulk_index_request.go
│ │ │ ├── bulk_update_request.go
│ │ │ └── mocks/
│ │ │ ├── GenericBulkProcessor.go
│ │ │ └── GenericBulkableRequest.go
│ │ ├── client/
│ │ │ ├── client.go
│ │ │ ├── os2/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_bulk.go
│ │ │ │ ├── client_bulk_test.go
│ │ │ │ └── client_test.go
│ │ │ ├── v6/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_bulk.go
│ │ │ │ ├── client_bulk_test.go
│ │ │ │ └── client_test.go
│ │ │ └── v7/
│ │ │ ├── client.go
│ │ │ ├── client_bulk.go
│ │ │ ├── client_bulk_test.go
│ │ │ └── client_test.go
│ │ ├── client.go
│ │ ├── common.go
│ │ ├── defs.go
│ │ ├── esql/
│ │ │ ├── README.md
│ │ │ ├── aggregation.go
│ │ │ ├── cadenceDevReadme.md
│ │ │ ├── cadenceSpecial.go
│ │ │ ├── cadencesql.go
│ │ │ ├── esql.go
│ │ │ ├── esql_test.go
│ │ │ ├── globals.go
│ │ │ ├── having.go
│ │ │ ├── scriptQuery.go
│ │ │ └── select.go
│ │ ├── interfaces.go
│ │ ├── mocks/
│ │ │ └── GenericClient.go
│ │ ├── page_token.go
│ │ ├── query/
│ │ │ ├── bool_query.go
│ │ │ ├── bool_query_test.go
│ │ │ ├── builder.go
│ │ │ ├── builder_test.go
│ │ │ ├── exists_query.go
│ │ │ ├── exists_query_test.go
│ │ │ ├── match_query.go
│ │ │ ├── match_query_test.go
│ │ │ ├── range_query.go
│ │ │ ├── range_query_test.go
│ │ │ ├── sort.go
│ │ │ └── sort_test.go
│ │ └── validator/
│ │ ├── queryValidator.go
│ │ ├── queryValidator_test.go
│ │ ├── searchAttrValidator.go
│ │ └── searchAttrValidator_test.go
│ ├── errors/
│ │ ├── fake_errors.go
│ │ ├── internal_failure_error.go
│ │ ├── peer_hostname_error.go
│ │ ├── peer_hostname_error_test.go
│ │ └── tasklist_not_owned_by_host_error.go
│ ├── future/
│ │ ├── future.go
│ │ └── future_test.go
│ ├── headers.go
│ ├── isolationgroup/
│ │ ├── context.go
│ │ ├── context_test.go
│ │ ├── defaultisolationgroupstate/
│ │ │ ├── state.go
│ │ │ ├── state_test.go
│ │ │ └── types.go
│ │ ├── interface.go
│ │ ├── isolation_group_mock.go
│ │ └── isolationgroupapi/
│ │ ├── domain-api-handlers.go
│ │ ├── domain-api-handlers_test.go
│ │ ├── global-api-handlers.go
│ │ ├── global-api-handlers_test.go
│ │ ├── handler.go
│ │ ├── interface.go
│ │ ├── isolation_handler_mock.go
│ │ ├── mappers.go
│ │ └── mappers_test.go
│ ├── json_task_token_serializer.go
│ ├── json_task_token_serializer_test.go
│ ├── locks/
│ │ ├── lock.go
│ │ └── lock_test.go
│ ├── log/
│ │ ├── interface.go
│ │ ├── logfx/
│ │ │ ├── fx.go
│ │ │ └── fx_test.go
│ │ ├── logger.go
│ │ ├── logger_bench_test.go
│ │ ├── logger_mock.go
│ │ ├── logger_test.go
│ │ ├── options.go
│ │ ├── panic.go
│ │ ├── replay.go
│ │ ├── tag/
│ │ │ ├── interface.go
│ │ │ ├── tags.go
│ │ │ └── values.go
│ │ ├── testlogger/
│ │ │ ├── fx.go
│ │ │ ├── fx_test.go
│ │ │ ├── testlogger.go
│ │ │ └── testlogger_test.go
│ │ └── throttle.go
│ ├── mapq/
│ │ ├── README.md
│ │ ├── client_impl.go
│ │ ├── client_impl_test.go
│ │ ├── dispatcher/
│ │ │ ├── dispatcher.go
│ │ │ └── dispatcher_test.go
│ │ ├── example_test.go
│ │ ├── mapq.go
│ │ ├── tree/
│ │ │ ├── queue_tree.go
│ │ │ ├── queue_tree_node.go
│ │ │ └── queue_tree_test.go
│ │ └── types/
│ │ ├── client.go
│ │ ├── consumer.go
│ │ ├── consumer_mock.go
│ │ ├── item.go
│ │ ├── item_mock.go
│ │ ├── item_test.go
│ │ ├── offsets.go
│ │ ├── persister.go
│ │ ├── persister_mock.go
│ │ ├── policy.go
│ │ ├── policy_collection.go
│ │ └── policy_collection_test.go
│ ├── membership/
│ │ ├── hashring.go
│ │ ├── hashring_test.go
│ │ ├── hostinfo.go
│ │ ├── hostinfo_test.go
│ │ ├── membershipfx/
│ │ │ ├── membershipfx.go
│ │ │ └── memebershipfx_test.go
│ │ ├── peerprovider_mock.go
│ │ ├── resolver.go
│ │ ├── resolver_mock.go
│ │ ├── resolver_test.go
│ │ ├── sharddistributorresolver.go
│ │ ├── sharddistributorresolver_test.go
│ │ ├── singleprovider.go
│ │ ├── singleprovider_mock.go
│ │ ├── tasklist_differentiator.go
│ │ └── tasklist_differentiator_test.go
│ ├── messaging/
│ │ ├── ackManager.go
│ │ ├── ackManager_test.go
│ │ ├── client_mock.go
│ │ ├── errors.go
│ │ ├── interface.go
│ │ ├── kafka/
│ │ │ ├── client_impl.go
│ │ │ ├── client_impl_test.go
│ │ │ ├── consumer_impl.go
│ │ │ ├── consumer_impl_test.go
│ │ │ ├── partition_ack_manager.go
│ │ │ ├── partition_ack_manager_test.go
│ │ │ ├── producer_impl.go
│ │ │ └── producer_impl_test.go
│ │ ├── metrics_producer.go
│ │ ├── metrics_producer_test.go
│ │ ├── mocks/
│ │ │ └── message_mock.go
│ │ └── noop_producer.go
│ ├── metrics/
│ │ ├── client.go
│ │ ├── config.go
│ │ ├── config_test.go
│ │ ├── context.go
│ │ ├── context_test.go
│ │ ├── defs.go
│ │ ├── defs_test.go
│ │ ├── histograms.go
│ │ ├── histograms_test.go
│ │ ├── interfaces.go
│ │ ├── metricsfx/
│ │ │ ├── metricsfx.go
│ │ │ └── metricsfx_test.go
│ │ ├── mocks/
│ │ │ ├── Client.go
│ │ │ └── Scope.go
│ │ ├── nop.go
│ │ ├── runtime.go
│ │ ├── scope.go
│ │ ├── scope_test.go
│ │ ├── stopwatch.go
│ │ ├── tags.go
│ │ ├── tally/
│ │ │ ├── prometheus/
│ │ │ │ └── buckets.go
│ │ │ └── statsd/
│ │ │ ├── reporter.go
│ │ │ └── reporter_test.go
│ │ └── version.go
│ ├── mocks/
│ │ ├── ExecutionManager.go
│ │ ├── ExecutionManagerFactory.go
│ │ ├── HistoryV2Manager.go
│ │ ├── KafkaProducer.go
│ │ ├── MessagingClient.go
│ │ ├── MetadataManager.go
│ │ ├── ShardManager.go
│ │ ├── TaskManager.go
│ │ └── VisibilityManager.go
│ ├── ndc/
│ │ ├── history_resender.go
│ │ ├── history_resender_mock.go
│ │ └── history_resender_test.go
│ ├── pagination/
│ │ ├── interface.go
│ │ ├── iterator.go
│ │ ├── iterator_test.go
│ │ ├── mocks.go
│ │ ├── writer.go
│ │ ├── writerIterator_test.go
│ │ └── writer_test.go
│ ├── peerprovider/
│ │ ├── plugin.go
│ │ ├── plugin_test.go
│ │ └── ringpopprovider/
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── factory.go
│ │ ├── factory_test.go
│ │ ├── provider.go
│ │ ├── provider_test.go
│ │ └── ringpopfx/
│ │ ├── ringpopfx.go
│ │ └── ringpopfx_test.go
│ ├── persistence/
│ │ ├── client/
│ │ │ ├── bean.go
│ │ │ ├── bean_mock.go
│ │ │ ├── bean_test.go
│ │ │ ├── factory.go
│ │ │ ├── factory_mock.go
│ │ │ └── factory_test.go
│ │ ├── config.go
│ │ ├── config_store_manager.go
│ │ ├── config_store_manager_test.go
│ │ ├── data_manager_interfaces.go
│ │ ├── data_manager_interfaces_mock.go
│ │ ├── data_manager_interfaces_test.go
│ │ ├── data_store_interfaces.go
│ │ ├── data_store_interfaces_mock.go
│ │ ├── data_store_interfaces_test.go
│ │ ├── domain_audit_log.go
│ │ ├── domain_audit_log_test.go
│ │ ├── domain_audit_manager.go
│ │ ├── domain_audit_manager_test.go
│ │ ├── domain_manager.go
│ │ ├── domain_manager_test.go
│ │ ├── domain_replication_config_test.go
│ │ ├── elasticsearch/
│ │ │ ├── decodeBench_test.go
│ │ │ ├── es_visibility_metric_clients.go
│ │ │ ├── es_visibility_store.go
│ │ │ └── es_visibility_store_test.go
│ │ ├── errors.go
│ │ ├── errors_test.go
│ │ ├── execution_manager.go
│ │ ├── execution_manager_test.go
│ │ ├── history_manager.go
│ │ ├── history_manager_test.go
│ │ ├── mappers.go
│ │ ├── mappers_test.go
│ │ ├── metered.go
│ │ ├── metered_test.go
│ │ ├── nosql/
│ │ │ ├── constants.go
│ │ │ ├── factory.go
│ │ │ ├── nosql_config_store.go
│ │ │ ├── nosql_config_store_test.go
│ │ │ ├── nosql_domain_audit_store.go
│ │ │ ├── nosql_domain_audit_store_test.go
│ │ │ ├── nosql_domain_store.go
│ │ │ ├── nosql_domain_store_test.go
│ │ │ ├── nosql_execution_store.go
│ │ │ ├── nosql_execution_store_test.go
│ │ │ ├── nosql_execution_store_util.go
│ │ │ ├── nosql_execution_store_util_test.go
│ │ │ ├── nosql_history_store.go
│ │ │ ├── nosql_history_store_test.go
│ │ │ ├── nosql_queue_store.go
│ │ │ ├── nosql_queue_store_test.go
│ │ │ ├── nosql_shard_store.go
│ │ │ ├── nosql_shard_store_test.go
│ │ │ ├── nosql_store.go
│ │ │ ├── nosql_task_store.go
│ │ │ ├── nosql_task_store_test.go
│ │ │ ├── nosql_test_utils.go
│ │ │ ├── nosql_visibility_store.go
│ │ │ ├── nosql_visibility_store_test.go
│ │ │ ├── nosqlplugin/
│ │ │ │ ├── cassandra/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── cluster_config.go
│ │ │ │ │ ├── cluster_config_cql.go
│ │ │ │ │ ├── constants.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── db_test.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── domain_audit_log_test.go
│ │ │ │ │ ├── domain_cql.go
│ │ │ │ │ ├── domain_test.go
│ │ │ │ │ ├── gocql/
│ │ │ │ │ │ ├── batch.go
│ │ │ │ │ │ ├── batch_test.go
│ │ │ │ │ │ ├── client.go
│ │ │ │ │ │ ├── client_test.go
│ │ │ │ │ │ ├── consistency.go
│ │ │ │ │ │ ├── consistency_test.go
│ │ │ │ │ │ ├── interface.go
│ │ │ │ │ │ ├── interface_mock.go
│ │ │ │ │ │ ├── public/
│ │ │ │ │ │ │ ├── client.go
│ │ │ │ │ │ │ ├── client_test.go
│ │ │ │ │ │ │ └── testdata.go
│ │ │ │ │ │ ├── query.go
│ │ │ │ │ │ └── session.go
│ │ │ │ │ ├── history_events.go
│ │ │ │ │ ├── history_events_cql.go
│ │ │ │ │ ├── history_events_test.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── plugin_test.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── queue_cql.go
│ │ │ │ │ ├── queue_test.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── shard_cql.go
│ │ │ │ │ ├── shard_test.go
│ │ │ │ │ ├── tasks.go
│ │ │ │ │ ├── tasks_cql.go
│ │ │ │ │ ├── tasks_test.go
│ │ │ │ │ ├── testdata/
│ │ │ │ │ │ ├── domain.go
│ │ │ │ │ │ ├── shard.go
│ │ │ │ │ │ ├── visibility.go
│ │ │ │ │ │ └── workflow_execution.go
│ │ │ │ │ ├── visibility.go
│ │ │ │ │ ├── visibility_cql.go
│ │ │ │ │ ├── visibility_test.go
│ │ │ │ │ ├── workflow.go
│ │ │ │ │ ├── workflow_cql.go
│ │ │ │ │ ├── workflow_parsing_utils.go
│ │ │ │ │ ├── workflow_parsing_utils_test.go
│ │ │ │ │ ├── workflow_test.go
│ │ │ │ │ ├── workflow_utils.go
│ │ │ │ │ └── workflow_utils_test.go
│ │ │ │ ├── common.go
│ │ │ │ ├── dynamodb/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configStore.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── visibility.go
│ │ │ │ │ └── workflow.go
│ │ │ │ ├── errors.go
│ │ │ │ ├── interfaces.go
│ │ │ │ ├── interfaces_mock.go
│ │ │ │ ├── mongodb/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configStore.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── error.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── visibility.go
│ │ │ │ │ └── workflow.go
│ │ │ │ └── types.go
│ │ │ ├── plugin.go
│ │ │ ├── sharded_nosql_store.go
│ │ │ ├── sharded_nosql_store_mock.go
│ │ │ ├── sharded_nosql_store_test.go
│ │ │ ├── sharding_policy.go
│ │ │ ├── sharding_policy_test.go
│ │ │ └── utils.go
│ │ ├── operation_mode_validator.go
│ │ ├── operation_mode_validator_test.go
│ │ ├── persistence-tests/
│ │ │ ├── configStorePersistenceTest.go
│ │ │ ├── dbVisibilityPersistenceTest.go
│ │ │ ├── domainAuditPersistenceTest.go
│ │ │ ├── executionManagerTest.go
│ │ │ ├── executionManagerTestForEventsV2.go
│ │ │ ├── historyV2PersistenceTest.go
│ │ │ ├── matchingPersistenceTest.go
│ │ │ ├── metadataPersistenceV2Test.go
│ │ │ ├── persistenceTestBase.go
│ │ │ ├── queuePersistenceTest.go
│ │ │ ├── shardPersistenceTest.go
│ │ │ ├── shared_test.go
│ │ │ ├── testcluster/
│ │ │ │ └── interfaces.go
│ │ │ └── visibilitySamplingClient_test.go
│ │ ├── persistence-utils/
│ │ │ └── history_manager_util.go
│ │ ├── pinot/
│ │ │ ├── pinot_visibility_metric_clients.go
│ │ │ ├── pinot_visibility_metric_clients_test.go
│ │ │ ├── pinot_visibility_store.go
│ │ │ └── pinot_visibility_store_test.go
│ │ ├── queue_manager.go
│ │ ├── retryer.go
│ │ ├── retryer_mock.go
│ │ ├── retryer_test.go
│ │ ├── serialization/
│ │ │ ├── getters.go
│ │ │ ├── getters_fixtures_test.go
│ │ │ ├── getters_test.go
│ │ │ ├── interfaces.go
│ │ │ ├── interfaces_mock.go
│ │ │ ├── parser.go
│ │ │ ├── parser_test.go
│ │ │ ├── persistence_mapper.go
│ │ │ ├── persistence_mapper_test.go
│ │ │ ├── serialization_test_utils.go
│ │ │ ├── snappy_thrift_decoder.go
│ │ │ ├── snappy_thrift_decoder_test.go
│ │ │ ├── snappy_thrift_encoder.go
│ │ │ ├── snappy_thrift_encoder_test.go
│ │ │ ├── task_serializer.go
│ │ │ ├── task_serializer_mock.go
│ │ │ ├── task_serializer_test.go
│ │ │ ├── thrift_decoder.go
│ │ │ ├── thrift_encoder.go
│ │ │ ├── thrift_mapper.go
│ │ │ ├── thrift_mapper_test.go
│ │ │ └── uuid.go
│ │ ├── serializer.go
│ │ ├── serializer_mock.go
│ │ ├── serializer_test.go
│ │ ├── shard_manager.go
│ │ ├── shard_manager_test.go
│ │ ├── sql/
│ │ │ ├── common.go
│ │ │ ├── common_test.go
│ │ │ ├── factory.go
│ │ │ ├── factory_test.go
│ │ │ ├── main_test.go
│ │ │ ├── plugin.go
│ │ │ ├── plugin_test.go
│ │ │ ├── sql_config_store.go
│ │ │ ├── sql_config_store_test.go
│ │ │ ├── sql_domain_audit_store.go
│ │ │ ├── sql_domain_audit_store_test.go
│ │ │ ├── sql_domain_store.go
│ │ │ ├── sql_domain_store_test.go
│ │ │ ├── sql_execution_store.go
│ │ │ ├── sql_execution_store_test.go
│ │ │ ├── sql_execution_store_util.go
│ │ │ ├── sql_execution_store_util_test.go
│ │ │ ├── sql_history_store.go
│ │ │ ├── sql_history_store_test.go
│ │ │ ├── sql_queue_store.go
│ │ │ ├── sql_queue_store_test.go
│ │ │ ├── sql_shard_store.go
│ │ │ ├── sql_shard_store_test.go
│ │ │ ├── sql_task_store.go
│ │ │ ├── sql_task_store_test.go
│ │ │ ├── sql_test_utils.go
│ │ │ ├── sql_visibility_store.go
│ │ │ ├── sqldriver/
│ │ │ │ ├── connections.go
│ │ │ │ ├── driver.go
│ │ │ │ ├── interface.go
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── sharded.go
│ │ │ │ └── singleton.go
│ │ │ ├── sqlplugin/
│ │ │ │ ├── dbSharding.go
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── interfaces.go
│ │ │ │ ├── mysql/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configstore.go
│ │ │ │ │ ├── configstore_sql.go
│ │ │ │ │ ├── configstore_test.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── domain_audit_log_test.go
│ │ │ │ │ ├── dsn_test.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── execution.go
│ │ │ │ │ ├── execution_maps.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── typeconv.go
│ │ │ │ │ └── visibility.go
│ │ │ │ ├── postgres/
│ │ │ │ │ ├── admin.go
│ │ │ │ │ ├── configstore.go
│ │ │ │ │ ├── db.go
│ │ │ │ │ ├── domain.go
│ │ │ │ │ ├── domain_audit_log.go
│ │ │ │ │ ├── domain_audit_log_test.go
│ │ │ │ │ ├── events.go
│ │ │ │ │ ├── execution.go
│ │ │ │ │ ├── execution_maps.go
│ │ │ │ │ ├── plugin.go
│ │ │ │ │ ├── plugin_test.go
│ │ │ │ │ ├── queue.go
│ │ │ │ │ ├── shard.go
│ │ │ │ │ ├── task.go
│ │ │ │ │ ├── typeconv.go
│ │ │ │ │ └── visibility.go
│ │ │ │ └── sqlite/
│ │ │ │ ├── admin.go
│ │ │ │ ├── db.go
│ │ │ │ ├── db_pool.go
│ │ │ │ ├── domain.go
│ │ │ │ ├── dsn.go
│ │ │ │ ├── dsn_test.go
│ │ │ │ ├── error_checker.go
│ │ │ │ ├── events.go
│ │ │ │ ├── execution.go
│ │ │ │ ├── execution_maps.go
│ │ │ │ ├── plugin.go
│ │ │ │ ├── plugin_test.go
│ │ │ │ ├── queue.go
│ │ │ │ ├── shard.go
│ │ │ │ ├── sqlite_persistence_test.go
│ │ │ │ ├── task.go
│ │ │ │ ├── typeconv.go
│ │ │ │ └── visibility.go
│ │ │ ├── workflow_state_maps.go
│ │ │ ├── workflow_state_non_maps.go
│ │ │ └── workflow_state_non_maps_test.go
│ │ ├── statsComputer.go
│ │ ├── statsComputer_test.go
│ │ ├── task_manager.go
│ │ ├── task_manager_test.go
│ │ ├── tasks.go
│ │ ├── tasks_test.go
│ │ ├── versionHistory.go
│ │ ├── versionHistory_test.go
│ │ ├── visibility_hybrid_manager.go
│ │ ├── visibility_hybrid_manager_test.go
│ │ ├── visibility_manager_interfaces.go
│ │ ├── visibility_manager_interfaces_mock.go
│ │ ├── visibility_single_manager.go
│ │ ├── visibility_single_manager_test.go
│ │ ├── visibility_store_mock.go
│ │ ├── workflowStateCloseStatusValidator.go
│ │ ├── workflowStateCloseStatusValidator_test.go
│ │ ├── workflow_execution_info.go
│ │ ├── workflow_execution_info_test.go
│ │ └── wrappers/
│ │ ├── errorinjectors/
│ │ │ ├── configstore_generated.go
│ │ │ ├── domain_generated.go
│ │ │ ├── execution_generated.go
│ │ │ ├── history_generated.go
│ │ │ ├── injectors_test.go
│ │ │ ├── queue_generated.go
│ │ │ ├── shard_generated.go
│ │ │ ├── task_generated.go
│ │ │ ├── utils.go
│ │ │ └── visibility_generated.go
│ │ ├── metered/
│ │ │ ├── base.go
│ │ │ ├── configstore_generated.go
│ │ │ ├── domain_generated.go
│ │ │ ├── execution_generated.go
│ │ │ ├── history_generated.go
│ │ │ ├── metered_test.go
│ │ │ ├── queue_generated.go
│ │ │ ├── shard_generated.go
│ │ │ ├── task_generated.go
│ │ │ └── visibility_generated.go
│ │ ├── ratelimited/
│ │ │ ├── configstore_generated.go
│ │ │ ├── domain_generated.go
│ │ │ ├── errors.go
│ │ │ ├── execution_generated.go
│ │ │ ├── history_generated.go
│ │ │ ├── queue_generated.go
│ │ │ ├── shard_generated.go
│ │ │ ├── task_generated.go
│ │ │ ├── utils_test.go
│ │ │ ├── visibility_generated.go
│ │ │ └── wrappers_test.go
│ │ ├── sampled/
│ │ │ ├── tokenbucketfactory.go
│ │ │ ├── tokenbucketfactory_test.go
│ │ │ ├── visibility_manager.go
│ │ │ └── visibility_manager_test.go
│ │ └── templates/
│ │ ├── errorinjector.tmpl
│ │ ├── metered.tmpl
│ │ ├── metered_execution.tmpl
│ │ └── ratelimited.tmpl
│ ├── pinot/
│ │ ├── generic_client_mock.go
│ │ ├── interfaces.go
│ │ ├── page_token.go
│ │ ├── page_token_test.go
│ │ ├── pinotQueryValidator.go
│ │ ├── pinotQueryValidator_test.go
│ │ ├── pinot_client.go
│ │ ├── pinot_client_test.go
│ │ ├── response_utility.go
│ │ └── response_utility_test.go
│ ├── pprof.go
│ ├── pprof_mock.go
│ ├── quotas/
│ │ ├── caller_bypass.go
│ │ ├── caller_bypass_test.go
│ │ ├── collection.go
│ │ ├── collection_mock.go
│ │ ├── dynamicratelimiter.go
│ │ ├── global/
│ │ │ ├── algorithm/
│ │ │ │ ├── requestweighted.go
│ │ │ │ ├── requestweighted_fuzz_test.go
│ │ │ │ ├── requestweighted_test.go
│ │ │ │ └── testdata/
│ │ │ │ └── fuzz/
│ │ │ │ ├── FuzzMissedUpdate/
│ │ │ │ │ └── 264c784f7bafbf5f
│ │ │ │ └── FuzzMultiUpdate/
│ │ │ │ ├── 00649674e28cdc32
│ │ │ │ ├── 0bb6b094a7f63d70
│ │ │ │ ├── 356e28f5914a0f16
│ │ │ │ ├── 449388c309f148fd
│ │ │ │ ├── 582528ddfad69eb5
│ │ │ │ ├── 754d7f941db60f1d
│ │ │ │ ├── 84c7bfae679f54a7
│ │ │ │ ├── 9abdd061069970e6
│ │ │ │ ├── c50ed3d1a22fe00d
│ │ │ │ └── f1fafad245481a29
│ │ │ ├── collection/
│ │ │ │ ├── collection.go
│ │ │ │ ├── collection_fuzz_test.go
│ │ │ │ ├── collection_test.go
│ │ │ │ ├── internal/
│ │ │ │ │ ├── atomicmap.go
│ │ │ │ │ ├── atomicmap_external_test.go
│ │ │ │ │ ├── counted.go
│ │ │ │ │ ├── counted_test.go
│ │ │ │ │ ├── fallback.go
│ │ │ │ │ ├── fallback_test.go
│ │ │ │ │ ├── shadowed.go
│ │ │ │ │ └── shadowed_test.go
│ │ │ │ └── testdata/
│ │ │ │ └── fuzz/
│ │ │ │ └── FuzzBoostRPS/
│ │ │ │ ├── 1b0805e3169f0ae7
│ │ │ │ └── 216cd14a71215fe2
│ │ │ ├── doc.go
│ │ │ ├── rpc/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_mock.go
│ │ │ │ ├── client_test.go
│ │ │ │ ├── error.go
│ │ │ │ ├── mapping.go
│ │ │ │ └── mapping_test.go
│ │ │ └── shared/
│ │ │ ├── keymapper.go
│ │ │ ├── sanity.go
│ │ │ └── sanity_test.go
│ │ ├── interfaces.go
│ │ ├── limiter_mock.go
│ │ ├── limiter_test.go
│ │ ├── limiterfactory_mock.go
│ │ ├── multistageratelimiter.go
│ │ ├── permember/
│ │ │ ├── permember.go
│ │ │ └── permember_test.go
│ │ └── policy_mock.go
│ ├── rangeiter/
│ │ ├── dynamic_config_linear_iterator.go
│ │ ├── dynamic_config_linear_iterator_test.go
│ │ ├── iterator.go
│ │ ├── linear_iterator.go
│ │ └── linear_iterator_test.go
│ ├── reconciliation/
│ │ ├── constants.go
│ │ ├── entity/
│ │ │ ├── types.go
│ │ │ └── types_test.go
│ │ ├── fetcher/
│ │ │ ├── concrete.go
│ │ │ ├── concrete_test.go
│ │ │ ├── current.go
│ │ │ ├── current_test.go
│ │ │ ├── timer.go
│ │ │ ├── timer_test.go
│ │ │ └── types.go
│ │ ├── invariant/
│ │ │ ├── collection_enumer_generated.go
│ │ │ ├── concrete_execution_exists.go
│ │ │ ├── concrete_execution_exists_test.go
│ │ │ ├── history_exists.go
│ │ │ ├── history_exists_test.go
│ │ │ ├── inactive_domain_exists.go
│ │ │ ├── inactive_domain_exists_test.go
│ │ │ ├── invariant_manager.go
│ │ │ ├── invariant_manager_test.go
│ │ │ ├── invariant_test_utils.go
│ │ │ ├── mocks.go
│ │ │ ├── open_current_execution.go
│ │ │ ├── open_current_execution_test.go
│ │ │ ├── stale_workflow.go
│ │ │ ├── stale_workflow_test.go
│ │ │ ├── timer_invalid.go
│ │ │ ├── timer_invalid_test.go
│ │ │ ├── types.go
│ │ │ ├── util.go
│ │ │ └── util_test.go
│ │ └── store/
│ │ ├── blobstoreIterator.go
│ │ ├── blobstoreWriter.go
│ │ ├── blobstorewriter_test.go
│ │ ├── mocks.go
│ │ ├── types.go
│ │ └── writerIterator_test.go
│ ├── resource/
│ │ ├── params.go
│ │ ├── resource_impl.go
│ │ ├── resource_impl_test.go
│ │ ├── resource_mock.go
│ │ ├── resource_test_utils.go
│ │ └── types.go
│ ├── rpc/
│ │ ├── direct_peer_chooser.go
│ │ ├── direct_peer_chooser_test.go
│ │ ├── dns_updater.go
│ │ ├── dns_updater_test.go
│ │ ├── factory.go
│ │ ├── factory_mock.go
│ │ ├── factory_test.go
│ │ ├── localip.go
│ │ ├── localip_test.go
│ │ ├── middleware.go
│ │ ├── middleware_test.go
│ │ ├── outbounds.go
│ │ ├── outbounds_mock.go
│ │ ├── outbounds_test.go
│ │ ├── params.go
│ │ ├── params_test.go
│ │ ├── peer_chooser.go
│ │ ├── peer_chooser_mock.go
│ │ ├── peer_chooser_test.go
│ │ ├── rpcfx/
│ │ │ └── rpcfx.go
│ │ └── types.go
│ ├── rsa.go
│ ├── scripting/
│ │ ├── exec.go
│ │ └── exec_test.go
│ ├── service/
│ │ ├── config.go
│ │ ├── metrics.go
│ │ ├── name.go
│ │ └── name_test.go
│ ├── stats/
│ │ ├── interface_mock.go
│ │ ├── interfaces.go
│ │ ├── stats.go
│ │ ├── stats_benchmark_test.go
│ │ └── stats_test.go
│ ├── syncmap/
│ │ ├── syncmap.go
│ │ └── syncmap_test.go
│ ├── task/
│ │ ├── fifo_task_scheduler.go
│ │ ├── fifo_task_scheduler_options.go
│ │ ├── fifo_task_scheduler_test.go
│ │ ├── hierarchical_weighted_round_robin_task_pool.go
│ │ ├── hierarchical_weighted_round_robin_task_pool_test.go
│ │ ├── hierarchical_weighted_round_robin_task_scheduler.go
│ │ ├── hierarchical_weighted_round_robin_task_scheduler_test.go
│ │ ├── interface.go
│ │ ├── interface_mock.go
│ │ ├── iwrr_node.go
│ │ ├── iwrr_node_test.go
│ │ ├── iwrr_schedule.go
│ │ ├── iwrr_schedule_test.go
│ │ ├── parallel_task_processor.go
│ │ ├── parallel_task_processor_test.go
│ │ ├── scheduler_options.go
│ │ ├── scheduler_options_test.go
│ │ ├── sequential_task_processor.go
│ │ ├── sequential_task_processor_test.go
│ │ ├── ttl_channel.go
│ │ ├── ttl_channel_test.go
│ │ ├── weighted_channel_pool.go
│ │ ├── weighted_channel_pool_test.go
│ │ ├── weighted_round_robin_task_scheduler.go
│ │ ├── weighted_round_robin_task_scheduler_options.go
│ │ └── weighted_round_robin_task_scheduler_test.go
│ ├── taskTokenSerializerInterfaces.go
│ ├── taskTokenSerializerInterfaces_mock.go
│ ├── taskvalidator/
│ │ ├── validateworkflow.go
│ │ └── validateworkflow_test.go
│ ├── testing/
│ │ ├── allisset.go
│ │ ├── allisset_test.go
│ │ ├── event_generator.go
│ │ ├── generator_interface.go
│ │ ├── history_event_test.go
│ │ ├── history_event_util.go
│ │ └── testdatagen/
│ │ ├── fuzzer.go
│ │ └── idlfuzzedtestdata/
│ │ └── history.go
│ ├── tokenbucket/
│ │ ├── tb.go
│ │ └── tb_test.go
│ ├── types/
│ │ ├── admin.go
│ │ ├── admin_test.go
│ │ ├── caller.go
│ │ ├── caller_test.go
│ │ ├── configStore.go
│ │ ├── configStore_test.go
│ │ ├── enums.go
│ │ ├── enums_test.go
│ │ ├── errors.go
│ │ ├── errors_test.go
│ │ ├── health.go
│ │ ├── history.go
│ │ ├── history_test.go
│ │ ├── mapper/
│ │ │ ├── errorutils/
│ │ │ │ ├── convert.go
│ │ │ │ └── convert_test.go
│ │ │ ├── proto/
│ │ │ │ ├── admin.go
│ │ │ │ ├── admin_test.go
│ │ │ │ ├── api.go
│ │ │ │ ├── api_test.go
│ │ │ │ ├── enum_test.go
│ │ │ │ ├── errors.go
│ │ │ │ ├── errors_test.go
│ │ │ │ ├── helpers.go
│ │ │ │ ├── helpers_test.go
│ │ │ │ ├── history.go
│ │ │ │ ├── history_test.go
│ │ │ │ ├── matching.go
│ │ │ │ ├── matching_test.go
│ │ │ │ ├── schedule.go
│ │ │ │ ├── schedule_test.go
│ │ │ │ ├── sharddistributor.go
│ │ │ │ ├── sharddistributor_test.go
│ │ │ │ ├── shared.go
│ │ │ │ └── shared_test.go
│ │ │ ├── testutils/
│ │ │ │ ├── common_fuzzers.go
│ │ │ │ ├── fuzz_mapper.go
│ │ │ │ ├── fuzz_mapper_test.go
│ │ │ │ └── fuzz_test_utils.go
│ │ │ └── thrift/
│ │ │ ├── admin.go
│ │ │ ├── admin_test.go
│ │ │ ├── any.go
│ │ │ ├── any_test.go
│ │ │ ├── configStore.go
│ │ │ ├── config_store_test.go
│ │ │ ├── errors.go
│ │ │ ├── errors_test.go
│ │ │ ├── health.go
│ │ │ ├── helpers.go
│ │ │ ├── helpers_test.go
│ │ │ ├── history.go
│ │ │ ├── history_test.go
│ │ │ ├── matching.go
│ │ │ ├── matching_test.go
│ │ │ ├── predicate.go
│ │ │ ├── predicate_test.go
│ │ │ ├── replicator.go
│ │ │ ├── replicator_test.go
│ │ │ ├── shared.go
│ │ │ └── shared_test.go
│ │ ├── matching.go
│ │ ├── matching_test.go
│ │ ├── predicate.go
│ │ ├── replicator.go
│ │ ├── replicator_test.go
│ │ ├── schedule.go
│ │ ├── schedule_service.go
│ │ ├── schedule_service_test.go
│ │ ├── schedule_test.go
│ │ ├── sharddistributor.go
│ │ ├── sharddistributor_statuses_enumer_generated.go
│ │ ├── sharddistributor_test.go
│ │ ├── shared.go
│ │ ├── shared_test.go
│ │ ├── test_util.go
│ │ └── testdata/
│ │ ├── common.go
│ │ ├── config_store.go
│ │ ├── decision.go
│ │ ├── domain.go
│ │ ├── enum.go
│ │ ├── error.go
│ │ ├── history.go
│ │ ├── queue.go
│ │ ├── replication.go
│ │ ├── schedule.go
│ │ ├── service_admin.go
│ │ ├── service_frontend.go
│ │ ├── service_history.go
│ │ ├── service_matching.go
│ │ └── service_sharddistributor.go
│ ├── util/
│ │ ├── file_util.go
│ │ └── file_util_test.go
│ ├── util.go
│ ├── util_test.go
│ └── visibility/
│ ├── validate_search_attribute_key.go
│ └── validate_search_attribute_key_test.go
├── config/
│ ├── base.yaml
│ ├── bench/
│ │ ├── base.yaml
│ │ ├── basic.json
│ │ ├── basic_panic.json
│ │ ├── cancellation.json
│ │ ├── concurrent_execution.json
│ │ ├── cron.json
│ │ ├── development.yaml
│ │ ├── signal.json
│ │ └── timer.json
│ ├── canary/
│ │ ├── base.yaml
│ │ └── development.yaml
│ ├── credentials/
│ │ ├── client.key
│ │ ├── keytest
│ │ └── keytest.pub
│ ├── development.yaml
│ ├── development_async_wf_kafka_queue.yaml
│ ├── development_es_opensearch.yaml
│ ├── development_es_opensearch_migration.yaml
│ ├── development_es_v6.yaml
│ ├── development_es_v7.yaml
│ ├── development_generic_oauth.yaml
│ ├── development_http_api.yaml
│ ├── development_instance2.yaml
│ ├── development_multiple_cassandra.yaml
│ ├── development_multiple_mysql.yaml
│ ├── development_mysql.yaml
│ ├── development_oauth.yaml
│ ├── development_pinot.yaml
│ ├── development_postgres.yaml
│ ├── development_prometheus.yaml
│ ├── development_scylla.yaml
│ ├── development_sqlite.yaml
│ ├── development_tls.yaml
│ ├── development_xdc_cluster0.yaml
│ ├── development_xdc_cluster1.yaml
│ ├── development_xdc_cluster2.yaml
│ └── dynamicconfig/
│ ├── README.md
│ ├── development.yaml
│ ├── development_es.yaml
│ ├── development_pinot.yaml
│ ├── replication_simulation_activeactive.yml
│ ├── replication_simulation_activeactive_child.yml
│ ├── replication_simulation_activeactive_cron.yml
│ ├── replication_simulation_activeactive_invalid_cluster_attribute.yml
│ ├── replication_simulation_activeactive_regional_failover.yml
│ ├── replication_simulation_activeactive_regional_failover_start_same_wfid.yml
│ ├── replication_simulation_activeactive_regional_failover_start_same_wfid_2.yml
│ ├── replication_simulation_activeactive_same_wfid.yml
│ ├── replication_simulation_activeactive_same_wfid_signalwithstart.yml
│ ├── replication_simulation_activeactive_same_wfid_signalwithstart_delayed.yml
│ ├── replication_simulation_activeactive_signalwithstart_terminateifrunning.yml
│ ├── replication_simulation_activeactive_start_terminateifrunning.yml
│ ├── replication_simulation_activepassive_to_activeactive.yml
│ ├── replication_simulation_budget_manager.yml
│ ├── replication_simulation_clusterredirection.yml
│ ├── replication_simulation_default.yml
│ └── replication_simulation_reset.yml
├── docker/
│ ├── README.md
│ ├── config/
│ │ ├── bench/
│ │ │ └── development.yaml
│ │ └── canary/
│ │ └── development.yaml
│ ├── config_template.yaml
│ ├── dev/
│ │ ├── cassandra-esv7-kafka.yml
│ │ ├── cassandra-opensearch-kafka-migration.yml
│ │ ├── cassandra-opensearch-kafka.yml
│ │ ├── cassandra-pinot-kafka.yml
│ │ ├── cassandra-testing/
│ │ │ └── docker-compose-local-caas-cluster.yaml
│ │ ├── cassandra.yml
│ │ ├── mongo-esv7-kafka.yml
│ │ ├── mysql-esv7-kafka.yml
│ │ ├── mysql.yml
│ │ └── postgres.yml
│ ├── docker-compose-archival-filestore.yml
│ ├── docker-compose-async-wf-kafka-v4.yml
│ ├── docker-compose-async-wf-kafka.yml
│ ├── docker-compose-bench.yml
│ ├── docker-compose-canary.yml
│ ├── docker-compose-es-v7.yml
│ ├── docker-compose-es.yml
│ ├── docker-compose-http-api.yml
│ ├── docker-compose-multiclusters-cass-mysql-es.yaml
│ ├── docker-compose-multiclusters-es.yml
│ ├── docker-compose-multiclusters.yml
│ ├── docker-compose-mysql.yml
│ ├── docker-compose-oauth.yml
│ ├── docker-compose-opensearch.yml
│ ├── docker-compose-pinot.yml
│ ├── docker-compose-postgres.yml
│ ├── docker-compose-scylla.yml
│ ├── docker-compose-statsd.yml
│ ├── docker-compose.yml
│ ├── domain/
│ │ ├── cassandra.cql
│ │ ├── mysql.sql
│ │ └── postgres.sql
│ ├── entrypoint.sh
│ ├── github_actions/
│ │ ├── Dockerfile
│ │ ├── README.md
│ │ ├── docker-compose-cassandra-lwt.yml
│ │ ├── docker-compose-es7.yml
│ │ ├── docker-compose-local-async-wf.yml
│ │ ├── docker-compose-local-es7.yml
│ │ ├── docker-compose-local-history-simulation.yml
│ │ ├── docker-compose-local-matching-simulation.yml
│ │ ├── docker-compose-local-pinot.yml
│ │ ├── docker-compose-local-replication-simulation.yml
│ │ ├── docker-compose-local.yml
│ │ ├── docker-compose-opensearch2.yml
│ │ ├── docker-compose-pinot.yml
│ │ ├── docker-compose.yml
│ │ ├── grafana/
│ │ │ ├── grafana.ini
│ │ │ └── provisioning/
│ │ │ ├── dashboards/
│ │ │ │ ├── cadence-archival.json
│ │ │ │ ├── cadence-client-overall.json
│ │ │ │ ├── cadence-frontend.json
│ │ │ │ ├── cadence-history.json
│ │ │ │ ├── cadence-matching.json
│ │ │ │ ├── cadence-persistence.json
│ │ │ │ ├── cadence-server.json
│ │ │ │ └── default.yaml
│ │ │ └── datasources/
│ │ │ └── default.yaml
│ │ └── prometheus/
│ │ ├── .gitignore
│ │ ├── matching_simulation_prometheus.yml
│ │ └── replication_simulation_prometheus.yml
│ ├── grafana/
│ │ ├── grafana.ini
│ │ └── provisioning/
│ │ ├── dashboards/
│ │ │ ├── cadence-archival.json
│ │ │ ├── cadence-client-overall.json
│ │ │ ├── cadence-frontend.json
│ │ │ ├── cadence-history.json
│ │ │ ├── cadence-matching.json
│ │ │ ├── cadence-persistence.json
│ │ │ ├── cadence-server.json
│ │ │ └── default.yaml
│ │ └── datasources/
│ │ └── default.yaml
│ ├── prometheus/
│ │ └── prometheus.yml
│ ├── prometheus_multiclusters/
│ │ └── prometheus.yml
│ ├── setup-multiclusters-schema.sh
│ ├── start-cadence.sh
│ └── start.sh
├── docs/
│ ├── cassandra-executions-table.md
│ ├── design/
│ │ ├── 1533-host-specific-tasklist.md
│ │ ├── 2215-synchronous-request-reply.md
│ │ ├── 2290-cadence-ndc.md
│ │ ├── active-active/
│ │ │ └── active-active.md
│ │ ├── domain-updates/
│ │ │ └── fencing-tokens.md
│ │ ├── graceful-domain-failover/
│ │ │ └── 3051-graceful-domain-failover.md
│ │ ├── history-queue-v2/
│ │ │ └── history-queue-v2.md
│ │ ├── index.md
│ │ └── workflow-shadowing/
│ │ └── 2547-workflow-shadowing.md
│ ├── flow.md
│ ├── howtos/
│ │ ├── async-api.md
│ │ ├── cassandra-fql.md
│ │ └── setup-cadence-locally-with-replication.md
│ ├── migration/
│ │ ├── cassandra-shard-info.md
│ │ └── tasklist-partition-config.md
│ ├── non-deterministic-error.md
│ ├── persistence.md
│ ├── roadmap.md
│ ├── scalable_tasklist.md
│ ├── setup/
│ │ ├── MYSQL_SETUP.md
│ │ └── POSTGRES_SETUP.md
│ ├── toc.md
│ └── visibility-on-elasticsearch.md
├── environment/
│ ├── env.go
│ └── env_test.go
├── go.mod
├── go.sum
├── go.work
├── go.work.sum
├── host/
│ ├── activity_test.go
│ ├── archival_test.go
│ ├── async_wf_test.go
│ ├── cancel_workflow_test.go
│ ├── cassandra_lwt_test.go
│ ├── cli/
│ │ ├── cassandra/
│ │ │ ├── cassandra_tool_cqlclient_test.go
│ │ │ ├── cassandra_tool_setupTask_test.go
│ │ │ ├── cassandra_tool_updateTask_test.go
│ │ │ ├── cassandra_tool_version_test.go
│ │ │ └── utils.go
│ │ └── sql/
│ │ ├── cli_test.go
│ │ ├── connTest.go
│ │ ├── handlerTest.go
│ │ ├── setuptaskTest.go
│ │ ├── updatetaskTest.go
│ │ ├── utils.go
│ │ └── versionTest.go
│ ├── client.go
│ ├── client_integration_test.go
│ ├── continue_as_new_test.go
│ ├── decision_test.go
│ ├── decision_timeout_test.go
│ ├── dynamicconfig.go
│ ├── elastic_search_test.go
│ ├── esutils/
│ │ ├── client_os2.go
│ │ ├── client_v6.go
│ │ ├── client_v7.go
│ │ └── interfaces.go
│ ├── flag.go
│ ├── integration_test.go
│ ├── integration_test_cron.go
│ ├── integrationbase.go
│ ├── membership_hashring.go
│ ├── membership_resolver.go
│ ├── ndc/
│ │ ├── integration_test.go
│ │ ├── replication_integration_test.go
│ │ └── test_suites.go
│ ├── onebox.go
│ ├── persistence/
│ │ ├── cassandra/
│ │ │ └── cassandra_persistence_test.go
│ │ ├── dynamodb/
│ │ │ └── dynamodb_persistence_test.go
│ │ ├── mongodb/
│ │ │ └── mongodb_persistence_test.go
│ │ ├── mysql/
│ │ │ └── mysql_persistence_test.go
│ │ └── postgres/
│ │ └── postgres_persistence_test.go
│ ├── pinot_test.go
│ ├── pinotutils/
│ │ └── pinotClient.go
│ ├── query_workflow_test.go
│ ├── reset_workflow_test.go
│ ├── retry_policy_workflow_test.go
│ ├── service.go
│ ├── signal_workflow_test.go
│ ├── size_limit_test.go
│ ├── task_list_isolation_test.go
│ ├── task_list_test.go
│ ├── taskpoller.go
│ ├── test_suites.go
│ ├── testcluster.go
│ ├── testdata/
│ │ ├── clientintegrationtestcluster.yaml
│ │ ├── dynamicconfig/
│ │ │ ├── integration_queuev2_test.yaml
│ │ │ ├── integration_queuev2_with_alert_test.yaml
│ │ │ └── integration_test.yaml
│ │ ├── es_os2_index_template.json
│ │ ├── es_v6_index_template.json
│ │ ├── es_v7_index_template.json
│ │ ├── integration_async_wf_with_kafka_cluster.yaml
│ │ ├── integration_decision_timeout_cluster.yaml
│ │ ├── integration_elasticsearch_os2_cluster.yaml
│ │ ├── integration_elasticsearch_v6_cluster.yaml
│ │ ├── integration_elasticsearch_v7_cluster.yaml
│ │ ├── integration_pinot_cluster.yaml
│ │ ├── integration_queuev2_cluster.yaml
│ │ ├── integration_queuev2_with_alert_cluster.yaml
│ │ ├── integration_sizelimit_cluster.yaml
│ │ ├── integration_test_cluster.yaml
│ │ ├── integration_wfidratelimit_cluster.yaml
│ │ ├── ndc_integration_test_clusters.yaml
│ │ ├── task_list_test_cluster.yaml
│ │ ├── xdc_integration_es_clusters.yaml
│ │ └── xdc_integration_test_clusters.yaml
│ ├── workflowidratelimit_test.go
│ ├── workflowsidinternalratelimit_test.go
│ └── xdc/
│ └── elasticsearch_test.go
├── internal/
│ └── tools/
│ ├── go.mod
│ ├── go.sum
│ ├── go.work
│ ├── go.work.sum
│ └── tools.go
├── proto/
│ ├── buf.yaml
│ ├── internal/
│ │ └── uber/
│ │ └── cadence/
│ │ ├── history/
│ │ │ └── v1/
│ │ │ └── service.proto
│ │ ├── indexer/
│ │ │ └── v1/
│ │ │ └── messages.proto
│ │ ├── matching/
│ │ │ └── v1/
│ │ │ └── service.proto
│ │ ├── sharddistributor/
│ │ │ └── v1/
│ │ │ ├── canary.proto
│ │ │ ├── executor.proto
│ │ │ └── service.proto
│ │ └── shared/
│ │ └── v1/
│ │ ├── any.proto
│ │ ├── error.proto
│ │ ├── history.proto
│ │ ├── tasklist.proto
│ │ └── workflow.proto
│ └── persistenceblobs/
│ └── v1/
│ ├── gogo.proto
│ └── message.proto
├── revive.toml
├── schema/
│ ├── cassandra/
│ │ ├── README.md
│ │ ├── cadence/
│ │ │ ├── keyspace.cql
│ │ │ ├── schema.cql
│ │ │ └── versioned/
│ │ │ ├── s0.0-0.23/
│ │ │ │ ├── data_0_23.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── schema_0_23.cql
│ │ │ ├── v0.1/
│ │ │ │ ├── base.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.10/
│ │ │ │ ├── event_batch_version.cql
│ │ │ │ ├── execution_last_write_version_and_workflow_state.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.11/
│ │ │ │ ├── event_encoding.cql
│ │ │ │ ├── history_size.cql
│ │ │ │ ├── manifest.json
│ │ │ │ ├── sync_activity.cql
│ │ │ │ └── workflow_retry.cql
│ │ │ ├── v0.12/
│ │ │ │ ├── add_archival_config.cql
│ │ │ │ ├── cron.cql
│ │ │ │ ├── events_v2.cql
│ │ │ │ ├── manifest.json
│ │ │ │ ├── signal_count.cql
│ │ │ │ └── system_domain_bootstrap.cql
│ │ │ ├── v0.13/
│ │ │ │ ├── events_cache.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── reset.cql
│ │ │ ├── v0.14/
│ │ │ │ ├── last_event_task_id.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── task_list.cql
│ │ │ ├── v0.15/
│ │ │ │ ├── auto_reset.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.16/
│ │ │ │ ├── decision_scheduled_timestamp.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.17/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── search_attr.cql
│ │ │ │ └── task_created_time.cql
│ │ │ ├── v0.18/
│ │ │ │ ├── activity_last_failure_info.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.19/
│ │ │ │ ├── archival_domain_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.2/
│ │ │ │ ├── add_buffered_events.cql
│ │ │ │ ├── add_sticky_tasklist.cql
│ │ │ │ ├── add_wf_timeout.cql
│ │ │ │ ├── fail_decision_mutable_state.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.20/
│ │ │ │ ├── manifest.json
│ │ │ │ └── memo.cql
│ │ │ ├── v0.21/
│ │ │ │ ├── decision_original_scheduled_timestamp.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.22/
│ │ │ │ ├── activity_last_failure_details.cql
│ │ │ │ ├── cluster_replication_level.cql
│ │ │ │ ├── manifest.json
│ │ │ │ ├── parent_close_policy.cql
│ │ │ │ └── request_cancel_signal_batch_event_id.cql
│ │ │ ├── v0.23/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── queue.cql
│ │ │ │ ├── queue_metadata.cql
│ │ │ │ ├── system_domain.cql
│ │ │ │ └── version_histories.cql
│ │ │ ├── v0.24/
│ │ │ │ ├── checksum.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.25/
│ │ │ │ ├── manifest.json
│ │ │ │ └── replication_dlq.cql
│ │ │ ├── v0.26/
│ │ │ │ ├── domain_dlq_id.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.27/
│ │ │ │ ├── domain_failover_end_time.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.28/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── previous_failover_version.cql
│ │ │ │ ├── replication_task_creation_time.cql
│ │ │ │ └── shard_info_marker.cql
│ │ │ ├── v0.29/
│ │ │ │ ├── manifest.json
│ │ │ │ └── processing_queue_states.cql
│ │ │ ├── v0.3/
│ │ │ │ ├── add_client_version.cql
│ │ │ │ ├── add_last_first_event_id.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.30/
│ │ │ │ ├── domain_last_updated_time.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.31/
│ │ │ │ ├── cross_cluster_queue.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.32/
│ │ │ │ ├── config_store.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.33/
│ │ │ │ ├── child_info_domain_id.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── target_domain_ids.cql
│ │ │ ├── v0.34/
│ │ │ │ ├── manifest.json
│ │ │ │ └── workflow_execution_first_run_id.cql
│ │ │ ├── v0.35/
│ │ │ │ ├── manifest.json
│ │ │ │ └── partition_config.cql
│ │ │ ├── v0.36/
│ │ │ │ ├── isolation_groups.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.37/
│ │ │ │ ├── async_workflow_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.38/
│ │ │ │ ├── manifest.json
│ │ │ │ └── task_list_partition_config.cql
│ │ │ ├── v0.39/
│ │ │ │ ├── manifest.json
│ │ │ │ └── timestamps.cql
│ │ │ ├── v0.4/
│ │ │ │ ├── add_signal_decision.cql
│ │ │ │ ├── add_tasklist_kind.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.40/
│ │ │ │ ├── isolation_partition_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.41/
│ │ │ │ ├── executions.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.42/
│ │ │ │ ├── domain_active_clusters_config.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.43/
│ │ │ │ ├── manifest.json
│ │ │ │ └── workflow_execution_new_fields.cql
│ │ │ ├── v0.44/
│ │ │ │ ├── domain_audit_log.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.45/
│ │ │ │ ├── manifest.json
│ │ │ │ ├── timer_task.cql
│ │ │ │ └── transfer_task.cql
│ │ │ ├── v0.46/
│ │ │ │ ├── manifest.json
│ │ │ │ └── transfer_task.cql
│ │ │ ├── v0.5/
│ │ │ │ ├── add_replication_config.cql
│ │ │ │ ├── add_target_child_workflow_only_to_transfer_task.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.6/
│ │ │ │ ├── add_shard_cluster_ack_level.cql
│ │ │ │ ├── history_replication_task.cql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.7/
│ │ │ │ ├── buffered_replication_task.cql
│ │ │ │ ├── failover_version_persistence.cql
│ │ │ │ ├── manifest.json
│ │ │ │ └── retry_policy.cql
│ │ │ ├── v0.8/
│ │ │ │ ├── domain_notification.cql
│ │ │ │ └── manifest.json
│ │ │ └── v0.9/
│ │ │ ├── domain_data.cql
│ │ │ ├── manifest.json
│ │ │ └── transfer_timestamp.cql
│ │ ├── embed.go
│ │ ├── version.go
│ │ └── visibility/
│ │ ├── keyspace.cql
│ │ ├── schema.cql
│ │ └── versioned/
│ │ ├── v0.1/
│ │ │ ├── base.cql
│ │ │ └── manifest.json
│ │ ├── v0.10/
│ │ │ ├── add_execution_fields.cql
│ │ │ └── manifest.json
│ │ ├── v0.2/
│ │ │ ├── manifest.json
│ │ │ └── reduce_open_workflow_tombstones.cql
│ │ ├── v0.3/
│ │ │ ├── manifest.json
│ │ │ └── sort_by_close_time.cql
│ │ ├── v0.4/
│ │ │ ├── add_execution_time.cql
│ │ │ ├── add_memo.cql
│ │ │ └── manifest.json
│ │ ├── v0.5/
│ │ │ ├── add_task_list.cql
│ │ │ └── manifest.json
│ │ ├── v0.6/
│ │ │ ├── add_is_cron.cql
│ │ │ └── manifest.json
│ │ ├── v0.7/
│ │ │ ├── add_num_clusters.cql
│ │ │ └── manifest.json
│ │ ├── v0.8/
│ │ │ ├── add_update_time.cql
│ │ │ └── manifest.json
│ │ └── v0.9/
│ │ ├── add_shard_id.cql
│ │ └── manifest.json
│ ├── elasticsearch/
│ │ ├── embed.go
│ │ ├── os2/
│ │ │ └── visibility/
│ │ │ └── index_template.json
│ │ ├── v6/
│ │ │ └── visibility/
│ │ │ └── index_template.json
│ │ └── v7/
│ │ └── visibility/
│ │ └── index_template.json
│ ├── mongodb/
│ │ ├── README.md
│ │ ├── cadence/
│ │ │ ├── collectionSchema.go
│ │ │ ├── schema.json
│ │ │ └── versioned/
│ │ │ └── v0.1/
│ │ │ ├── base.json
│ │ │ └── manifest.json
│ │ └── version.go
│ ├── mysql/
│ │ ├── embed.go
│ │ ├── v8/
│ │ │ ├── cadence/
│ │ │ │ ├── database.sql
│ │ │ │ ├── schema.sql
│ │ │ │ └── versioned/
│ │ │ │ ├── v0.1/
│ │ │ │ │ ├── base.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── v0.2/
│ │ │ │ │ ├── manifest.json
│ │ │ │ │ └── queue.sql
│ │ │ │ ├── v0.3/
│ │ │ │ │ ├── manifest.json
│ │ │ │ │ └── replication_tasks_dlq.sql
│ │ │ │ ├── v0.4/
│ │ │ │ │ ├── blob_size.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── v0.5/
│ │ │ │ │ ├── cross_cluster_table.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ ├── v0.6/
│ │ │ │ │ ├── cluster_config.sql
│ │ │ │ │ └── manifest.json
│ │ │ │ └── v0.7/
│ │ │ │ ├── domain_audit_log.sql
│ │ │ │ └── manifest.json
│ │ │ └── visibility/
│ │ │ ├── database.sql
│ │ │ ├── schema.sql
│ │ │ └── versioned/
│ │ │ ├── v0.1/
│ │ │ │ ├── base.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.2/
│ │ │ │ ├── add_task_list.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.3/
│ │ │ │ ├── manifest.json
│ │ │ │ └── vs_index.sql
│ │ │ ├── v0.4/
│ │ │ │ ├── add_is_cron.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.5/
│ │ │ │ ├── add_num_clusters.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.6/
│ │ │ │ ├── add_update_time.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.7/
│ │ │ │ ├── add_shard_id.sql
│ │ │ │ └── manifest.json
│ │ │ └── v0.8/
│ │ │ ├── add_execution_fields.sql
│ │ │ └── manifest.json
│ │ └── version.go
│ ├── pinot/
│ │ ├── README.md
│ │ ├── cadence-visibility-config.json
│ │ ├── cadence-visibility-schema.json
│ │ └── create_pinot_table.sh
│ ├── postgres/
│ │ ├── cadence/
│ │ │ ├── database.sql
│ │ │ ├── schema.sql
│ │ │ └── versioned/
│ │ │ ├── v0.1/
│ │ │ │ ├── base.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.2/
│ │ │ │ ├── manifest.json
│ │ │ │ └── queue.sql
│ │ │ ├── v0.3/
│ │ │ │ ├── manifest.json
│ │ │ │ └── replication_tasks_dlq.sql
│ │ │ ├── v0.4/
│ │ │ │ ├── cross_cluster_table.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.5/
│ │ │ │ ├── cluster_config.sql
│ │ │ │ └── manifest.json
│ │ │ ├── v0.6/
│ │ │ │ ├── extend_workflow_id_length.sql
│ │ │ │ └── manifest.json
│ │ │ └── v0.7/
│ │ │ ├── domain_audit_log.sql
│ │ │ └── manifest.json
│ │ ├── embed.go
│ │ ├── version.go
│ │ └── visibility/
│ │ ├── database.sql
│ │ ├── schema.sql
│ │ └── versioned/
│ │ ├── v0.1/
│ │ │ ├── base.sql
│ │ │ └── manifest.json
│ │ ├── v0.2/
│ │ │ ├── add_task_list.sql
│ │ │ └── manifest.json
│ │ ├── v0.3/
│ │ │ ├── manifest.json
│ │ │ └── vs_index.sql
│ │ ├── v0.4/
│ │ │ ├── add_is_cron.sql
│ │ │ └── manifest.json
│ │ ├── v0.5/
│ │ │ ├── manifest.json
│ │ │ └── num_clusters.sql
│ │ ├── v0.6/
│ │ │ ├── add_update_time.sql
│ │ │ └── manifest.json
│ │ ├── v0.7/
│ │ │ ├── add_shard_id.sql
│ │ │ └── manifest.json
│ │ ├── v0.8/
│ │ │ ├── extend_workflow_id_length.sql
│ │ │ └── manifest.json
│ │ └── v0.9/
│ │ ├── add_execution_fields.sql
│ │ └── manifest.json
│ └── sqlite/
│ ├── cadence/
│ │ ├── schema.sql
│ │ └── versioned/
│ │ └── v0.1/
│ │ ├── base.sql
│ │ └── manifest.json
│ ├── embed.go
│ ├── version.go
│ └── visibility/
│ ├── schema.sql
│ └── versioned/
│ ├── v0.1/
│ │ ├── base.sql
│ │ └── manifest.json
│ └── v0.2/
│ ├── add_execution_fields.sql
│ └── manifest.json
├── scripts/
│ ├── build-with-ldflags.sh
│ ├── check-go-toolchain.sh
│ ├── check-gomod-version.sh
│ ├── docker-build.sh
│ ├── generate_cluster_attributes.sh
│ ├── get-ldflags.sh
│ ├── github_actions/
│ │ ├── gen_coverage_metadata.sh
│ │ └── golint.sh
│ ├── run_cass_and_test.sh
│ ├── run_several_instances.sh
│ ├── test_multicluster_domain_workflow.sh
│ └── travis/
│ ├── install-xdc-deps.sh
│ └── setup-mysql.sh
├── service/
│ ├── frontend/
│ │ ├── admin/
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interface.go
│ │ │ └── interface_mock.go
│ │ ├── api/
│ │ │ ├── domain_handlers.go
│ │ │ ├── domain_handlers_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── list_workflow_handlers.go
│ │ │ ├── producer_manager.go
│ │ │ ├── producer_manager_mock.go
│ │ │ ├── producer_manager_test.go
│ │ │ ├── refresh_workflow_tasks.go
│ │ │ ├── refresh_workflow_tasks_test.go
│ │ │ ├── request_validator.go
│ │ │ ├── request_validator_mock.go
│ │ │ ├── request_validator_test.go
│ │ │ ├── shutting_down_test.go
│ │ │ ├── task_list_handlers.go
│ │ │ └── task_list_handlers_test.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── service.go
│ │ ├── templates/
│ │ │ ├── accesscontrolled.tmpl
│ │ │ ├── clusterredirection.tmpl
│ │ │ ├── metered.tmpl
│ │ │ ├── ratelimited.tmpl
│ │ │ └── versioncheck.tmpl
│ │ ├── validate/
│ │ │ └── errors.go
│ │ └── wrappers/
│ │ ├── accesscontrolled/
│ │ │ ├── access_controlled.go
│ │ │ ├── access_controlled_test.go
│ │ │ ├── admin_generated.go
│ │ │ └── api_generated.go
│ │ ├── clusterredirection/
│ │ │ ├── api_generated.go
│ │ │ ├── api_test.go
│ │ │ ├── callwrappers.go
│ │ │ ├── policy.go
│ │ │ ├── policy_mock.go
│ │ │ ├── policy_test.go
│ │ │ ├── utils.go
│ │ │ └── utils_test.go
│ │ ├── grpc/
│ │ │ ├── admin_generated.go
│ │ │ ├── api_generated.go
│ │ │ └── share.go
│ │ ├── metered/
│ │ │ ├── api_generated.go
│ │ │ ├── metered.go
│ │ │ └── metered_test.go
│ │ ├── ratelimited/
│ │ │ ├── api_generated.go
│ │ │ ├── ratelimit.go
│ │ │ └── ratelimit_test.go
│ │ ├── thrift/
│ │ │ ├── admin_generated.go
│ │ │ ├── admin_handler_test.go
│ │ │ ├── api_generated.go
│ │ │ ├── api_handler_test.go
│ │ │ └── constructor.go
│ │ └── versioncheck/
│ │ └── api_generated.go
│ ├── history/
│ │ ├── common/
│ │ │ └── type.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── constants/
│ │ │ ├── constants.go
│ │ │ └── test_constants.go
│ │ ├── decision/
│ │ │ ├── checker.go
│ │ │ ├── checker_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── task_handler.go
│ │ │ └── task_handler_test.go
│ │ ├── engine/
│ │ │ ├── engineimpl/
│ │ │ │ ├── describe_mutable_state.go
│ │ │ │ ├── describe_mutable_state_test.go
│ │ │ │ ├── describe_queues.go
│ │ │ │ ├── describe_workflow_execution.go
│ │ │ │ ├── describe_workflow_execution_test.go
│ │ │ │ ├── dlq_operations.go
│ │ │ │ ├── get_replication_messages.go
│ │ │ │ ├── history_engine.go
│ │ │ │ ├── history_engine2_test.go
│ │ │ │ ├── history_engine3_eventsv2_test.go
│ │ │ │ ├── history_engine_start_test.go
│ │ │ │ ├── history_engine_test.go
│ │ │ │ ├── notify_tasks.go
│ │ │ │ ├── poll_mutable_state.go
│ │ │ │ ├── query_workflow.go
│ │ │ │ ├── reapply_events.go
│ │ │ │ ├── record_activity_task_started.go
│ │ │ │ ├── record_child_execution_completed.go
│ │ │ │ ├── record_decision_task_started.go
│ │ │ │ ├── refresh_workflow_tasks.go
│ │ │ │ ├── refresh_workflow_tasks_test.go
│ │ │ │ ├── register_domain_failover_callback.go
│ │ │ │ ├── register_domain_failover_callback_test.go
│ │ │ │ ├── remove_signal_mutable_state.go
│ │ │ │ ├── request_cancel_workflow_execution.go
│ │ │ │ ├── reset_queues.go
│ │ │ │ ├── reset_sticky_tasklist.go
│ │ │ │ ├── reset_sticky_tasklist_test.go
│ │ │ │ ├── reset_workflow_execution.go
│ │ │ │ ├── reset_workflow_execution_test.go
│ │ │ │ ├── respond_activity_task_canceled.go
│ │ │ │ ├── respond_activity_task_completed.go
│ │ │ │ ├── respond_activity_task_failed.go
│ │ │ │ ├── respond_activity_task_heartbeat.go
│ │ │ │ ├── respond_decision_task_completed.go
│ │ │ │ ├── respond_decision_task_failed.go
│ │ │ │ ├── signal_workflow_execution.go
│ │ │ │ ├── start_workflow_execution.go
│ │ │ │ ├── start_workflow_execution_test.go
│ │ │ │ ├── terminate_workflow_execution.go
│ │ │ │ └── terminate_workflow_execution_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ └── testdata/
│ │ │ └── engine_for_tests.go
│ │ ├── events/
│ │ │ ├── blob.go
│ │ │ ├── blob_test.go
│ │ │ ├── cache.go
│ │ │ ├── cache_mock.go
│ │ │ ├── cache_test.go
│ │ │ ├── notifier.go
│ │ │ ├── notifier_mock.go
│ │ │ └── notifier_test.go
│ │ ├── execution/
│ │ │ ├── cache.go
│ │ │ ├── cache_mock.go
│ │ │ ├── cache_test.go
│ │ │ ├── checksum.go
│ │ │ ├── context.go
│ │ │ ├── context_mock.go
│ │ │ ├── context_test.go
│ │ │ ├── context_util.go
│ │ │ ├── context_util_test.go
│ │ │ ├── history_builder.go
│ │ │ ├── history_builder_test.go
│ │ │ ├── integrity.go
│ │ │ ├── integrity_test.go
│ │ │ ├── mutable_state.go
│ │ │ ├── mutable_state_builder.go
│ │ │ ├── mutable_state_builder_add_continue_as_new_event_test.go
│ │ │ ├── mutable_state_builder_methods_activity.go
│ │ │ ├── mutable_state_builder_methods_activity_test.go
│ │ │ ├── mutable_state_builder_methods_cancellation.go
│ │ │ ├── mutable_state_builder_methods_child_workflow.go
│ │ │ ├── mutable_state_builder_methods_child_workflow_test.go
│ │ │ ├── mutable_state_builder_methods_completed.go
│ │ │ ├── mutable_state_builder_methods_decision.go
│ │ │ ├── mutable_state_builder_methods_decision_test.go
│ │ │ ├── mutable_state_builder_methods_signal.go
│ │ │ ├── mutable_state_builder_methods_signal_test.go
│ │ │ ├── mutable_state_builder_methods_started.go
│ │ │ ├── mutable_state_builder_methods_timedout.go
│ │ │ ├── mutable_state_builder_methods_timer.go
│ │ │ ├── mutable_state_builder_methods_timer_test.go
│ │ │ ├── mutable_state_builder_test.go
│ │ │ ├── mutable_state_decision_task_manager.go
│ │ │ ├── mutable_state_decision_task_manager_mock.go
│ │ │ ├── mutable_state_decision_task_manager_test.go
│ │ │ ├── mutable_state_mock.go
│ │ │ ├── mutable_state_task_generator.go
│ │ │ ├── mutable_state_task_generator_mock.go
│ │ │ ├── mutable_state_task_generator_test.go
│ │ │ ├── mutable_state_task_refresher.go
│ │ │ ├── mutable_state_task_refresher_mock.go
│ │ │ ├── mutable_state_task_refresher_test.go
│ │ │ ├── mutable_state_util.go
│ │ │ ├── mutable_state_util_test.go
│ │ │ ├── mutable_state_util_test_helpers.go
│ │ │ ├── retry.go
│ │ │ ├── retry_test.go
│ │ │ ├── state_builder.go
│ │ │ ├── state_builder_mock.go
│ │ │ ├── state_builder_test.go
│ │ │ ├── state_rebuilder.go
│ │ │ ├── state_rebuilder_mock.go
│ │ │ ├── state_rebuilder_test.go
│ │ │ ├── timer_sequence.go
│ │ │ ├── timer_sequence_mock.go
│ │ │ ├── timer_sequence_test.go
│ │ │ ├── workflow.go
│ │ │ ├── workflow_execution_util.go
│ │ │ ├── workflow_mock.go
│ │ │ └── workflow_test.go
│ │ ├── failover/
│ │ │ ├── coordinator.go
│ │ │ ├── coordinator_mock.go
│ │ │ ├── coordinator_test.go
│ │ │ ├── marker_notifier.go
│ │ │ ├── marker_notifier_mock.go
│ │ │ └── marker_notifier_test.go
│ │ ├── handler/
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interface.go
│ │ │ └── interface_mock.go
│ │ ├── lookup/
│ │ │ ├── lookup.go
│ │ │ └── lookup_test.go
│ │ ├── ndc/
│ │ │ ├── activity_replicator.go
│ │ │ ├── activity_replicator_mock.go
│ │ │ ├── activity_replicator_test.go
│ │ │ ├── branch_manager.go
│ │ │ ├── branch_manager_mock.go
│ │ │ ├── branch_manager_test.go
│ │ │ ├── conflict_resolver.go
│ │ │ ├── conflict_resolver_mock.go
│ │ │ ├── conflict_resolver_test.go
│ │ │ ├── events_reapplier.go
│ │ │ ├── events_reapplier_mock.go
│ │ │ ├── events_reapplier_test.go
│ │ │ ├── existing_workflow_transaction_manager.go
│ │ │ ├── existing_workflow_transaction_manager_mock.go
│ │ │ ├── existing_workflow_transaction_manager_test.go
│ │ │ ├── history_replicator.go
│ │ │ ├── history_replicator_test.go
│ │ │ ├── new_workflow_transaction_mamanger_mock.go
│ │ │ ├── new_workflow_transaction_manager.go
│ │ │ ├── new_workflow_transaction_manager_test.go
│ │ │ ├── replication_task.go
│ │ │ ├── replication_task_mock.go
│ │ │ ├── replication_task_test.go
│ │ │ ├── transaction_manager.go
│ │ │ ├── transaction_manager_mock.go
│ │ │ ├── transaction_manager_test.go
│ │ │ ├── workflow_resetter.go
│ │ │ ├── workflow_resetter_mock.go
│ │ │ └── workflow_resetter_test.go
│ │ ├── query/
│ │ │ ├── query.go
│ │ │ ├── query_test.go
│ │ │ ├── registry.go
│ │ │ ├── registry_mock.go
│ │ │ └── registry_test.go
│ │ ├── queue/
│ │ │ ├── action.go
│ │ │ ├── constants.go
│ │ │ ├── domain_filter.go
│ │ │ ├── domain_filter_test.go
│ │ │ ├── factory.go
│ │ │ ├── factory_mock.go
│ │ │ ├── factory_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── main_test.go
│ │ │ ├── processing_queue.go
│ │ │ ├── processing_queue_collection.go
│ │ │ ├── processing_queue_collection_test.go
│ │ │ ├── processing_queue_state.go
│ │ │ ├── processing_queue_test.go
│ │ │ ├── processor_base.go
│ │ │ ├── processor_base_test.go
│ │ │ ├── processor_options.go
│ │ │ ├── queue_processor_util.go
│ │ │ ├── queue_processor_util_test.go
│ │ │ ├── split_policy.go
│ │ │ ├── split_policy_test.go
│ │ │ ├── task_allocator.go
│ │ │ ├── task_allocator_test.go
│ │ │ ├── timer_queue_active_processor.go
│ │ │ ├── timer_queue_failover_processor.go
│ │ │ ├── timer_queue_processor.go
│ │ │ ├── timer_queue_processor_base.go
│ │ │ ├── timer_queue_processor_base_test.go
│ │ │ ├── timer_queue_standby_processor.go
│ │ │ ├── transfer_queue_processor.go
│ │ │ ├── transfer_queue_processor_base.go
│ │ │ ├── transfer_queue_processor_base_test.go
│ │ │ ├── transfer_queue_processor_test.go
│ │ │ ├── transfer_queue_validator.go
│ │ │ └── transfer_queue_validator_test.go
│ │ ├── queuev2/
│ │ │ ├── alert.go
│ │ │ ├── convert.go
│ │ │ ├── convert_test.go
│ │ │ ├── interface.go
│ │ │ ├── mitigator.go
│ │ │ ├── mitigator_mock.go
│ │ │ ├── mitigator_test.go
│ │ │ ├── monitor.go
│ │ │ ├── monitor_mock.go
│ │ │ ├── monitor_test.go
│ │ │ ├── pause_controller.go
│ │ │ ├── pause_controller_mock.go
│ │ │ ├── pause_controller_test.go
│ │ │ ├── pending_task_tracker.go
│ │ │ ├── pending_task_tracker_mock.go
│ │ │ ├── pending_task_tracker_test.go
│ │ │ ├── predicate.go
│ │ │ ├── predicate_mock.go
│ │ │ ├── predicate_operation.go
│ │ │ ├── predicate_operation_test.go
│ │ │ ├── predicate_test.go
│ │ │ ├── queue_base.go
│ │ │ ├── queue_base_test.go
│ │ │ ├── queue_immediate.go
│ │ │ ├── queue_immediate_test.go
│ │ │ ├── queue_reader.go
│ │ │ ├── queue_reader_mock.go
│ │ │ ├── queue_reader_test.go
│ │ │ ├── queue_scheduled.go
│ │ │ ├── queue_scheduled_test.go
│ │ │ ├── queue_state.go
│ │ │ ├── queue_state_test.go
│ │ │ ├── range.go
│ │ │ ├── range_test.go
│ │ │ ├── timer_queue_factory.go
│ │ │ ├── timer_queue_factory_test.go
│ │ │ ├── transfer_queue_factory.go
│ │ │ ├── transfer_queue_factory_test.go
│ │ │ ├── virtual_queue.go
│ │ │ ├── virtual_queue_manager.go
│ │ │ ├── virtual_queue_manager_mock.go
│ │ │ ├── virtual_queue_manager_test.go
│ │ │ ├── virtual_queue_mock.go
│ │ │ ├── virtual_queue_test.go
│ │ │ ├── virtual_slice.go
│ │ │ ├── virtual_slice_mock.go
│ │ │ └── virtual_slice_test.go
│ │ ├── replication/
│ │ │ ├── dlq_handler.go
│ │ │ ├── dlq_handler_test.go
│ │ │ ├── dynamic_task_batch_sizer.go
│ │ │ ├── dynamic_task_batch_sizer_test.go
│ │ │ ├── metrics_emitter.go
│ │ │ ├── metrics_emitter_test.go
│ │ │ ├── task_ack_manager.go
│ │ │ ├── task_ack_manager_test.go
│ │ │ ├── task_executor.go
│ │ │ ├── task_executor_mock.go
│ │ │ ├── task_executor_test.go
│ │ │ ├── task_fetcher.go
│ │ │ ├── task_fetcher_mock.go
│ │ │ ├── task_fetcher_test.go
│ │ │ ├── task_hydrator.go
│ │ │ ├── task_hydrator_test.go
│ │ │ ├── task_processor.go
│ │ │ ├── task_processor_test.go
│ │ │ ├── task_reader.go
│ │ │ ├── task_reader_test.go
│ │ │ ├── task_store.go
│ │ │ └── task_store_test.go
│ │ ├── reset/
│ │ │ ├── resetter.go
│ │ │ ├── resetter_mock.go
│ │ │ └── resetter_test.go
│ │ ├── resource/
│ │ │ ├── resource.go
│ │ │ ├── resource_mock.go
│ │ │ └── resource_test_utils.go
│ │ ├── service.go
│ │ ├── shard/
│ │ │ ├── context.go
│ │ │ ├── context_mock.go
│ │ │ ├── context_test.go
│ │ │ ├── context_test_utils.go
│ │ │ ├── controller.go
│ │ │ ├── controller_benchmark_test.go
│ │ │ ├── controller_mock.go
│ │ │ └── controller_test.go
│ │ ├── simulation/
│ │ │ └── event.go
│ │ ├── task/
│ │ │ ├── constants.go
│ │ │ ├── event_logger.go
│ │ │ ├── event_logger_test.go
│ │ │ ├── executor_wrapper.go
│ │ │ ├── executor_wrapper_test.go
│ │ │ ├── interface.go
│ │ │ ├── interface_mock.go
│ │ │ ├── priority_assigner.go
│ │ │ ├── priority_assigner_test.go
│ │ │ ├── processor.go
│ │ │ ├── processor_test.go
│ │ │ ├── rate_limited_processor.go
│ │ │ ├── rate_limited_processor_test.go
│ │ │ ├── redispatcher.go
│ │ │ ├── redispatcher_test.go
│ │ │ ├── rescheduler.go
│ │ │ ├── rescheduler_test.go
│ │ │ ├── standby_task_util.go
│ │ │ ├── standby_task_util_test.go
│ │ │ ├── task.go
│ │ │ ├── task_rate_limiter.go
│ │ │ ├── task_rate_limiter_mock.go
│ │ │ ├── task_rate_limiter_test.go
│ │ │ ├── task_test.go
│ │ │ ├── task_util.go
│ │ │ ├── task_util_test.go
│ │ │ ├── timer_active_task_executor.go
│ │ │ ├── timer_active_task_executor_test.go
│ │ │ ├── timer_standby_task_executor.go
│ │ │ ├── timer_standby_task_executor_test.go
│ │ │ ├── timer_task_executor_base.go
│ │ │ ├── timer_task_executor_base_test.go
│ │ │ ├── transfer_active_task_executor.go
│ │ │ ├── transfer_active_task_executor_test.go
│ │ │ ├── transfer_standby_task_executor.go
│ │ │ ├── transfer_standby_task_executor_test.go
│ │ │ ├── transfer_task_executor_base.go
│ │ │ └── transfer_task_executor_base_test.go
│ │ ├── templates/
│ │ │ └── ratelimited.tmpl
│ │ ├── testing/
│ │ │ ├── events_util.go
│ │ │ └── workflow_util.go
│ │ ├── workflow/
│ │ │ ├── context.go
│ │ │ ├── errors.go
│ │ │ ├── util.go
│ │ │ └── util_test.go
│ │ ├── workflowcache/
│ │ │ ├── cache.go
│ │ │ ├── cache_mock.go
│ │ │ ├── cache_test.go
│ │ │ ├── metrics.go
│ │ │ └── metrics_test.go
│ │ └── wrappers/
│ │ ├── grpc/
│ │ │ ├── grpc_handler.go
│ │ │ └── grpc_handler_generated.go
│ │ ├── ratelimited/
│ │ │ ├── handler_generated.go
│ │ │ ├── handler_generated_test.go
│ │ │ ├── ratelimit.go
│ │ │ └── ratelimit_test.go
│ │ └── thrift/
│ │ ├── thrift_handler.go
│ │ ├── thrift_handler_generated.go
│ │ └── thrift_handler_test.go
│ ├── matching/
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ └── config_test.go
│ │ ├── event/
│ │ │ └── logger.go
│ │ ├── handler/
│ │ │ ├── context.go
│ │ │ ├── context_test.go
│ │ │ ├── engine.go
│ │ │ ├── engine_integration_test.go
│ │ │ ├── engine_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interfaces.go
│ │ │ ├── interfaces_mock.go
│ │ │ ├── membership.go
│ │ │ └── membership_test.go
│ │ ├── liveness/
│ │ │ ├── liveness.go
│ │ │ └── liveness_test.go
│ │ ├── poller/
│ │ │ ├── manager.go
│ │ │ └── manager_test.go
│ │ ├── service.go
│ │ ├── tasklist/
│ │ │ ├── adaptive_scaler.go
│ │ │ ├── adaptive_scaler_test.go
│ │ │ ├── db.go
│ │ │ ├── forwarder.go
│ │ │ ├── forwarder_test.go
│ │ │ ├── identifier.go
│ │ │ ├── identifier_test.go
│ │ │ ├── interfaces.go
│ │ │ ├── interfaces_mock.go
│ │ │ ├── isolation_balancer.go
│ │ │ ├── isolation_balancer_test.go
│ │ │ ├── matcher.go
│ │ │ ├── matcher_test.go
│ │ │ ├── shard_processor.go
│ │ │ ├── shard_processor_factory.go
│ │ │ ├── shard_processor_test.go
│ │ │ ├── task.go
│ │ │ ├── task_completer.go
│ │ │ ├── task_completer_test.go
│ │ │ ├── task_gc.go
│ │ │ ├── task_list_limiter.go
│ │ │ ├── task_list_limiter_test.go
│ │ │ ├── task_list_manager.go
│ │ │ ├── task_list_manager_test.go
│ │ │ ├── task_list_registry.go
│ │ │ ├── task_list_registry_test.go
│ │ │ ├── task_reader.go
│ │ │ ├── task_reader_test.go
│ │ │ ├── task_test.go
│ │ │ ├── task_writer.go
│ │ │ └── testing.go
│ │ └── wrappers/
│ │ ├── grpc/
│ │ │ ├── grpc_handler.go
│ │ │ └── grpc_handler_generated.go
│ │ └── thrift/
│ │ ├── thrift_handler.go
│ │ ├── thrift_handler_generated.go
│ │ └── thrift_handler_test.go
│ ├── sharddistributor/
│ │ ├── canary/
│ │ │ ├── config/
│ │ │ │ └── config.go
│ │ │ ├── executors/
│ │ │ │ ├── executors.go
│ │ │ │ └── executors_test.go
│ │ │ ├── externalshardassignment/
│ │ │ │ ├── shardassigner.go
│ │ │ │ └── shardassigner_test.go
│ │ │ ├── factory/
│ │ │ │ ├── factory.go
│ │ │ │ └── factory_test.go
│ │ │ ├── handler/
│ │ │ │ ├── ping_handler.go
│ │ │ │ └── ping_handler_test.go
│ │ │ ├── module.go
│ │ │ ├── module_test.go
│ │ │ ├── pinger/
│ │ │ │ ├── canary_client_mock.go
│ │ │ │ ├── pingAndLog.go
│ │ │ │ ├── pinger.go
│ │ │ │ └── pinger_test.go
│ │ │ ├── processor/
│ │ │ │ ├── shardprocessor.go
│ │ │ │ └── shardprocessor_test.go
│ │ │ ├── processorephemeral/
│ │ │ │ ├── canary_client_mock_test.go
│ │ │ │ ├── shardcreator.go
│ │ │ │ ├── shardcreator_test.go
│ │ │ │ ├── shardprocessor.go
│ │ │ │ └── shardprocessor_test.go
│ │ │ ├── sharddistributorclient/
│ │ │ │ └── shardDistributorClient.go
│ │ │ └── sharddistributorexecutorclient/
│ │ │ └── shardDistributorExecutorClient.go
│ │ ├── client/
│ │ │ ├── clientcommon/
│ │ │ │ ├── config.go
│ │ │ │ ├── config_test.go
│ │ │ │ ├── constants.go
│ │ │ │ ├── drain_observer.go
│ │ │ │ └── drain_observer_mock.go
│ │ │ ├── executorclient/
│ │ │ │ ├── client.go
│ │ │ │ ├── client_test.go
│ │ │ │ ├── clientimpl.go
│ │ │ │ ├── clientimpl_test.go
│ │ │ │ ├── interface_mock.go
│ │ │ │ ├── meteredClientDecorater.go
│ │ │ │ ├── metricsconstants/
│ │ │ │ │ └── metrics.go
│ │ │ │ ├── noop.go
│ │ │ │ ├── noop_test.go
│ │ │ │ ├── syncgeneric/
│ │ │ │ │ ├── map.go
│ │ │ │ │ └── map_test.go
│ │ │ │ └── yarpc_client_mock.go
│ │ │ └── spectatorclient/
│ │ │ ├── client.go
│ │ │ ├── clientimpl.go
│ │ │ ├── clientimpl_test.go
│ │ │ ├── interface_mock.go
│ │ │ ├── metricsconstants/
│ │ │ │ └── metrics.go
│ │ │ ├── peer_chooser.go
│ │ │ ├── peer_chooser_test.go
│ │ │ └── sync/
│ │ │ ├── resettable_signal.go
│ │ │ └── resettable_signal_test.go
│ │ ├── config/
│ │ │ ├── config.go
│ │ │ ├── config_test.go
│ │ │ └── configtest/
│ │ │ └── config.go
│ │ ├── handler/
│ │ │ ├── batcher.go
│ │ │ ├── batcher_test.go
│ │ │ ├── ephemeral_assigner.go
│ │ │ ├── ephemeral_assigner_test.go
│ │ │ ├── executor.go
│ │ │ ├── executor_test.go
│ │ │ ├── handler.go
│ │ │ ├── handler_test.go
│ │ │ ├── interfaces.go
│ │ │ └── interfaces_mock.go
│ │ ├── leader/
│ │ │ ├── election/
│ │ │ │ ├── election.go
│ │ │ │ ├── election_mock.go
│ │ │ │ └── election_test.go
│ │ │ ├── namespace/
│ │ │ │ ├── manager.go
│ │ │ │ └── manager_test.go
│ │ │ └── process/
│ │ │ ├── process_mock.go
│ │ │ ├── processor.go
│ │ │ └── processor_test.go
│ │ ├── sharddistributorfx/
│ │ │ ├── fx_test.go
│ │ │ └── sharddistributorfx.go
│ │ ├── sharddistributorspectatorclient/
│ │ │ └── factory/
│ │ │ ├── meteredClientDecorater.go
│ │ │ └── sharddistributorspectatorclient.go
│ │ ├── store/
│ │ │ ├── etcd/
│ │ │ │ ├── etcdclient/
│ │ │ │ │ ├── client.go
│ │ │ │ │ └── client_mock.go
│ │ │ │ ├── etcdkeys/
│ │ │ │ │ ├── etcdkeys.go
│ │ │ │ │ └── etcdkeys_test.go
│ │ │ │ ├── etcdtypes/
│ │ │ │ │ ├── state.go
│ │ │ │ │ ├── state_test.go
│ │ │ │ │ ├── time.go
│ │ │ │ │ └── time_test.go
│ │ │ │ ├── executorstore/
│ │ │ │ │ ├── client.go
│ │ │ │ │ ├── client_test.go
│ │ │ │ │ ├── common/
│ │ │ │ │ │ ├── compression.go
│ │ │ │ │ │ └── compression_test.go
│ │ │ │ │ ├── etcdstore.go
│ │ │ │ │ ├── etcdstore_test.go
│ │ │ │ │ ├── executorstore_mock.go
│ │ │ │ │ ├── module.go
│ │ │ │ │ └── shardcache/
│ │ │ │ │ ├── namespaceshardcache.go
│ │ │ │ │ ├── namespaceshardcache_test.go
│ │ │ │ │ ├── pubsub.go
│ │ │ │ │ ├── pubsub_test.go
│ │ │ │ │ ├── shardcache.go
│ │ │ │ │ └── shardcache_test.go
│ │ │ │ ├── leaderstore/
│ │ │ │ │ ├── etcdleaderstore.go
│ │ │ │ │ └── etcdleaderstore_test.go
│ │ │ │ ├── module.go
│ │ │ │ └── testhelper/
│ │ │ │ └── testhelper.go
│ │ │ ├── leaderstore.go
│ │ │ ├── leaderstore_mock.go
│ │ │ ├── state.go
│ │ │ ├── state_test.go
│ │ │ ├── store.go
│ │ │ ├── store_mock.go
│ │ │ └── wrappers/
│ │ │ ├── metered/
│ │ │ │ ├── base.go
│ │ │ │ ├── metered_test.go
│ │ │ │ └── store_generated.go
│ │ │ └── templates/
│ │ │ └── metered.tmpl
│ │ ├── templates/
│ │ │ └── metered.tmpl
│ │ └── wrappers/
│ │ ├── grpc/
│ │ │ ├── grpc_executor_generated.go
│ │ │ ├── grpc_handler.go
│ │ │ └── grpc_handler_generated.go
│ │ └── metered/
│ │ ├── api_generated.go
│ │ ├── executor_generated.go
│ │ ├── metered.go
│ │ └── metered_test.go
│ ├── templates/
│ │ ├── grpc.tmpl
│ │ └── thrift.tmpl
│ └── worker/
│ ├── README.md
│ ├── archiver/
│ │ ├── activities.go
│ │ ├── activities_test.go
│ │ ├── client.go
│ │ ├── client_mock.go
│ │ ├── client_test.go
│ │ ├── client_worker.go
│ │ ├── handler.go
│ │ ├── handler_mock.go
│ │ ├── handler_test.go
│ │ ├── pump.go
│ │ ├── pump_mock.go
│ │ ├── pump_test.go
│ │ ├── replay_metrics_client.go
│ │ ├── testdata/
│ │ │ └── archival_workflow_history_v1.json
│ │ ├── util.go
│ │ ├── util_test.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── asyncworkflow/
│ │ ├── async_workflow_consumer_manager.go
│ │ └── async_workflow_consumer_manager_test.go
│ ├── batcher/
│ │ ├── batcher.go
│ │ ├── batcher_test.go
│ │ ├── entities.go
│ │ ├── workflow.go
│ │ ├── workflow_retry_test.go
│ │ └── workflow_test.go
│ ├── diagnostics/
│ │ ├── activities.go
│ │ ├── activities_test.go
│ │ ├── analytics/
│ │ │ ├── emitter.go
│ │ │ ├── emitter_test.go
│ │ │ ├── interface.go
│ │ │ └── types.go
│ │ ├── invariant/
│ │ │ ├── failure/
│ │ │ │ ├── failure.go
│ │ │ │ ├── failure_test.go
│ │ │ │ └── types.go
│ │ │ ├── interface.go
│ │ │ ├── retry/
│ │ │ │ ├── retry.go
│ │ │ │ ├── retry_test.go
│ │ │ │ └── types.go
│ │ │ └── timeout/
│ │ │ ├── timeout.go
│ │ │ ├── timeout_test.go
│ │ │ ├── timeout_utils.go
│ │ │ └── types.go
│ │ ├── module.go
│ │ ├── module_test.go
│ │ ├── parent_workflow.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── domaindeprecation/
│ │ ├── activities.go
│ │ ├── activities_test.go
│ │ ├── entities.go
│ │ ├── helpers.go
│ │ ├── module.go
│ │ ├── module_test.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── esanalyzer/
│ │ ├── analyzer.go
│ │ ├── analyzer_test.go
│ │ ├── domainWorkflowTypeCountWorkflow.go
│ │ └── workflow.go
│ ├── failovermanager/
│ │ ├── rebalance_workflow.go
│ │ ├── rebalance_workflow_test.go
│ │ ├── starter.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── indexer/
│ │ ├── esProcessor.go
│ │ ├── esProcessor_test.go
│ │ ├── indexer.go
│ │ ├── indexer_mock.go
│ │ ├── indexer_test.go
│ │ └── migration_indexer.go
│ ├── parentclosepolicy/
│ │ ├── client.go
│ │ ├── client_mock.go
│ │ ├── processor.go
│ │ └── workflow.go
│ ├── replicator/
│ │ ├── domain_replication_processor.go
│ │ ├── domain_replication_processor_test.go
│ │ └── replicator.go
│ ├── scanner/
│ │ ├── README.md
│ │ ├── data_corruption_workflow.go
│ │ ├── data_corruption_workflow_test.go
│ │ ├── executions/
│ │ │ ├── concrete_execution.go
│ │ │ ├── concrete_execution_test.go
│ │ │ ├── current_execution.go
│ │ │ ├── current_test.go
│ │ │ ├── scantype_enumer_generated.go
│ │ │ ├── types.go
│ │ │ └── workflows_test.go
│ │ ├── executor/
│ │ │ ├── executor.go
│ │ │ ├── executor_test.go
│ │ │ └── runq.go
│ │ ├── history/
│ │ │ ├── scavenger.go
│ │ │ └── scavenger_test.go
│ │ ├── scanner.go
│ │ ├── scanner_test.go
│ │ ├── shardscanner/
│ │ │ ├── activities.go
│ │ │ ├── activities_test.go
│ │ │ ├── aggregators.go
│ │ │ ├── aggregators_test.go
│ │ │ ├── fixer.go
│ │ │ ├── fixer_test.go
│ │ │ ├── fixer_workflow.go
│ │ │ ├── fixer_workflow_test.go
│ │ │ ├── scanner.go
│ │ │ ├── scanner_test.go
│ │ │ ├── scanner_workflow.go
│ │ │ ├── scanner_workflow_test.go
│ │ │ ├── types.go
│ │ │ ├── types_test.go
│ │ │ ├── workflows.go
│ │ │ └── workflows_test.go
│ │ ├── tasklist/
│ │ │ ├── db.go
│ │ │ ├── handler.go
│ │ │ ├── mocks_test.go
│ │ │ ├── scavenger.go
│ │ │ └── scavenger_test.go
│ │ ├── timers/
│ │ │ ├── timers.go
│ │ │ └── timers_test.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── scheduler/
│ │ ├── activity.go
│ │ ├── activity_test.go
│ │ ├── client_worker.go
│ │ ├── client_worker_test.go
│ │ ├── types.go
│ │ ├── workflow.go
│ │ └── workflow_test.go
│ ├── service.go
│ ├── worker/
│ │ ├── worker_interface.go
│ │ └── worker_mock.go
│ └── workercommon/
│ └── util.go
├── simulation/
│ ├── README.md
│ ├── history/
│ │ ├── dynamicconfig/
│ │ │ ├── default.yaml
│ │ │ ├── queuev2.yaml
│ │ │ └── queuev2_split.yaml
│ │ ├── history_simulation_test.go
│ │ ├── run.sh
│ │ ├── testdata/
│ │ │ ├── history_simulation_default.yaml
│ │ │ ├── history_simulation_queuev2.yaml
│ │ │ └── history_simulation_queuev2_split.yaml
│ │ └── workflow/
│ │ └── workflow.go
│ ├── matching/
│ │ ├── comparison/
│ │ │ ├── README.md
│ │ │ └── main.go
│ │ ├── matching_simulation_test.go
│ │ ├── run.sh
│ │ └── testdata/
│ │ ├── matching_simulation_burst.yaml
│ │ ├── matching_simulation_burst_adaptive.yaml
│ │ ├── matching_simulation_default.yaml
│ │ ├── matching_simulation_fluctuating.yaml
│ │ ├── matching_simulation_fluctuating_adaptive.yaml
│ │ ├── matching_simulation_get_partition_config_from_db.yaml
│ │ ├── matching_simulation_more_read_partitions.yaml
│ │ ├── matching_simulation_no_forwarding.yaml
│ │ ├── matching_simulation_no_wait_time_for_addtask.yaml
│ │ ├── matching_simulation_no_wait_time_for_polltask.yaml
│ │ ├── matching_simulation_no_wait_time_for_polltask_and_addtask.yaml
│ │ ├── matching_simulation_round_robin_load_balancer.yaml
│ │ ├── matching_simulation_throughput.yaml
│ │ ├── matching_simulation_weighted_load_balancer_with_backlog.yaml
│ │ ├── matching_simulation_with_backlog.yaml
│ │ ├── matching_simulation_zonal_isolation.yaml
│ │ ├── matching_simulation_zonal_isolation_few_pollers.yaml
│ │ ├── matching_simulation_zonal_isolation_many_pollers.yaml
│ │ ├── matching_simulation_zonal_isolation_single_partition.yaml
│ │ ├── matching_simulation_zonal_isolation_skew.yaml
│ │ ├── matching_simulation_zonal_isolation_skew_extreme.yaml
│ │ └── matching_simulation_zonal_isolation_skew_forwarding.yaml
│ └── replication/
│ ├── README.md
│ ├── replication_simulation_test.go
│ ├── run.sh
│ ├── testdata/
│ │ ├── replication_simulation_activeactive.yaml
│ │ ├── replication_simulation_activeactive_child.yaml
│ │ ├── replication_simulation_activeactive_cron.yaml
│ │ ├── replication_simulation_activeactive_invalid_cluster_attribute.yaml
│ │ ├── replication_simulation_activeactive_regional_failover.yaml
│ │ ├── replication_simulation_activeactive_regional_failover_start_same_wfid.yaml
│ │ ├── replication_simulation_activeactive_regional_failover_start_same_wfid_2.yaml
│ │ ├── replication_simulation_activeactive_same_wfid.yaml
│ │ ├── replication_simulation_activeactive_same_wfid_signalwithstart.yaml
│ │ ├── replication_simulation_activeactive_same_wfid_signalwithstart_delayed.yaml
│ │ ├── replication_simulation_activeactive_signalwithstart_terminateifrunning.yaml
│ │ ├── replication_simulation_activeactive_start_terminateifrunning.yaml
│ │ ├── replication_simulation_activepassive_to_activeactive.yaml
│ │ ├── replication_simulation_budget_manager.yaml
│ │ ├── replication_simulation_clusterredirection.yaml
│ │ ├── replication_simulation_default.yaml
│ │ └── replication_simulation_reset.yaml
│ ├── types/
│ │ ├── repl_sim_config.go
│ │ └── types.go
│ ├── worker/
│ │ └── cmd/
│ │ └── main.go
│ └── workflows/
│ ├── activityloop/
│ │ └── workflow.go
│ ├── childactivityloop/
│ │ └── workflow.go
│ ├── query/
│ │ └── workflow.go
│ ├── timeractivityloop/
│ │ └── workflow.go
│ └── workflows.go
├── testflags/
│ └── testflags.go
└── tools/
├── cassandra/
│ ├── README.md
│ ├── cqlclient.go
│ ├── cqlclient_test.go
│ ├── handler.go
│ ├── handler_test.go
│ └── main.go
├── cli/
│ ├── README.md
│ ├── admin.go
│ ├── admin_async_queue_commands.go
│ ├── admin_async_queue_commands_test.go
│ ├── admin_cluster_commands.go
│ ├── admin_cluster_commands_test.go
│ ├── admin_commands.go
│ ├── admin_commands_test.go
│ ├── admin_config_store_commands.go
│ ├── admin_config_store_commands_test.go
│ ├── admin_db_clean_command.go
│ ├── admin_db_clean_command_test.go
│ ├── admin_db_decode_thrift.go
│ ├── admin_db_decode_thrift_test.go
│ ├── admin_db_scan_command.go
│ ├── admin_db_scan_command_test.go
│ ├── admin_dlq_commands.go
│ ├── admin_elastic_search_commands.go
│ ├── admin_elastic_search_commands_test.go
│ ├── admin_failover_commands.go
│ ├── admin_failover_commands_test.go
│ ├── admin_kafka_commands.go
│ ├── admin_kafka_commands_test.go
│ ├── admin_task_list_commands.go
│ ├── admin_task_list_commands_test.go
│ ├── admin_timers.go
│ ├── admin_timers_mock.go
│ ├── admin_timers_test.go
│ ├── app.go
│ ├── app_test.go
│ ├── clitest/
│ │ ├── context.go
│ │ ├── context_test.go
│ │ ├── runner.go
│ │ └── runner_test.go
│ ├── cluster.go
│ ├── cluster_commands.go
│ ├── database.go
│ ├── database_test.go
│ ├── defs.go
│ ├── domain.go
│ ├── domain_commands.go
│ ├── domain_commands_test.go
│ ├── domain_migration_command.go
│ ├── domain_migration_command_test.go
│ ├── domain_utils.go
│ ├── factory.go
│ ├── factory_mock.go
│ ├── flags.go
│ ├── histogram.go
│ ├── histogram_test.go
│ ├── isolation-groups.go
│ ├── isolation_groups_test.go
│ ├── mock_manager_factory.go
│ ├── render.go
│ ├── render_test.go
│ ├── task_list.go
│ ├── task_list_commands.go
│ ├── testdata/
│ │ ├── scan_input.json
│ │ ├── scan_input_bad_data.json
│ │ └── scan_input_empty.json
│ ├── utils.go
│ ├── utils_test.go
│ ├── workflow.go
│ ├── workflow_batch_commands.go
│ ├── workflow_batch_commands_test.go
│ ├── workflow_commands.go
│ └── workflow_commands_test.go
├── common/
│ ├── commoncli/
│ │ ├── cli.go
│ │ └── cli_test.go
│ ├── flag/
│ │ ├── flag.go
│ │ └── flag_test.go
│ └── schema/
│ ├── handler.go
│ ├── handler_test.go
│ ├── schema_client_mock.go
│ ├── schema_graph.go
│ ├── schema_graph_test.go
│ ├── setuptask.go
│ ├── types.go
│ ├── updatetask.go
│ ├── updatetask_test.go
│ ├── util.go
│ ├── util_test.go
│ ├── version.go
│ └── version_test.go
├── linter/
│ └── funcorder/
│ ├── analyzer.go
│ └── cmd/
│ └── funcorder/
│ └── main.go
├── mcp/
│ ├── README.md
│ ├── main.go
│ └── util.go
└── sql/
├── README.md
├── conn.go
├── handler.go
├── main.go
└── sqlite/
└── sqlite_test.go
Showing preview only (6,038K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (56693 symbols across 2156 files)
FILE: .gen/go/admin/admin.go
type AddSearchAttributeRequest (line 24) | type AddSearchAttributeRequest struct
method ToWire (line 79) | func (v *AddSearchAttributeRequest) ToWire() (wire.Value, error) {
method FromWire (line 158) | func (v *AddSearchAttributeRequest) FromWire(w wire.Value) error {
method Encode (line 214) | func (v *AddSearchAttributeRequest) Encode(sw stream.Writer) error {
method Decode (line 297) | func (v *AddSearchAttributeRequest) Decode(sr stream.Reader) error {
method String (line 348) | func (v *AddSearchAttributeRequest) String() string {
method Equals (line 398) | func (v *AddSearchAttributeRequest) Equals(rhs *AddSearchAttributeRequ...
method MarshalLogObject (line 427) | func (v *AddSearchAttributeRequest) MarshalLogObject(enc zapcore.Objec...
method GetSearchAttribute (line 442) | func (v *AddSearchAttributeRequest) GetSearchAttribute() (o map[string...
method IsSetSearchAttribute (line 451) | func (v *AddSearchAttributeRequest) IsSetSearchAttribute() bool {
method GetSecurityToken (line 457) | func (v *AddSearchAttributeRequest) GetSecurityToken() (o string) {
method IsSetSecurityToken (line 466) | func (v *AddSearchAttributeRequest) IsSetSecurityToken() bool {
type _Map_String_IndexedValueType_MapItemList (line 29) | type _Map_String_IndexedValueType_MapItemList
method ForEach (line 31) | func (m _Map_String_IndexedValueType_MapItemList) ForEach(f func(wire....
method Size (line 50) | func (m _Map_String_IndexedValueType_MapItemList) Size() int {
method KeyType (line 54) | func (_Map_String_IndexedValueType_MapItemList) KeyType() wire.Type {
method ValueType (line 58) | func (_Map_String_IndexedValueType_MapItemList) ValueType() wire.Type {
method Close (line 62) | func (_Map_String_IndexedValueType_MapItemList) Close() {}
function _IndexedValueType_Read (line 107) | func _IndexedValueType_Read(w wire.Value) (shared.IndexedValueType, erro...
function _Map_String_IndexedValueType_Read (line 113) | func _Map_String_IndexedValueType_Read(m wire.MapItemList) (map[string]s...
function _Map_String_IndexedValueType_Encode (line 187) | func _Map_String_IndexedValueType_Encode(val map[string]shared.IndexedVa...
function _IndexedValueType_Decode (line 246) | func _IndexedValueType_Decode(sr stream.Reader) (shared.IndexedValueType...
function _Map_String_IndexedValueType_Decode (line 252) | func _Map_String_IndexedValueType_Decode(sr stream.Reader) (map[string]s...
function _Map_String_IndexedValueType_Equals (line 367) | func _Map_String_IndexedValueType_Equals(lhs, rhs map[string]shared.Inde...
function _String_EqualsPtr (line 384) | func _String_EqualsPtr(lhs, rhs *string) bool {
type _Map_String_IndexedValueType_Zapper (line 414) | type _Map_String_IndexedValueType_Zapper
method MarshalLogObject (line 418) | func (m _Map_String_IndexedValueType_Zapper) MarshalLogObject(enc zapc...
type AdminDeleteWorkflowRequest (line 470) | type AdminDeleteWorkflowRequest struct
method ToWire (line 490) | func (v *AdminDeleteWorkflowRequest) ToWire() (wire.Value, error) {
method FromWire (line 541) | func (v *AdminDeleteWorkflowRequest) FromWire(w wire.Value) error {
method Encode (line 574) | func (v *AdminDeleteWorkflowRequest) Encode(sw stream.Writer) error {
method Decode (line 617) | func (v *AdminDeleteWorkflowRequest) Decode(sr stream.Reader) error {
method String (line 668) | func (v *AdminDeleteWorkflowRequest) String() string {
method Equals (line 691) | func (v *AdminDeleteWorkflowRequest) Equals(rhs *AdminDeleteWorkflowRe...
method MarshalLogObject (line 709) | func (v *AdminDeleteWorkflowRequest) MarshalLogObject(enc zapcore.Obje...
method GetDomain (line 724) | func (v *AdminDeleteWorkflowRequest) GetDomain() (o string) {
method IsSetDomain (line 733) | func (v *AdminDeleteWorkflowRequest) IsSetDomain() bool {
method GetExecution (line 739) | func (v *AdminDeleteWorkflowRequest) GetExecution() (o *shared.Workflo...
method IsSetExecution (line 748) | func (v *AdminDeleteWorkflowRequest) IsSetExecution() bool {
function _WorkflowExecution_Read (line 518) | func _WorkflowExecution_Read(w wire.Value) (*shared.WorkflowExecution, e...
function _WorkflowExecution_Decode (line 606) | func _WorkflowExecution_Decode(sr stream.Reader) (*shared.WorkflowExecut...
type AdminDeleteWorkflowResponse (line 752) | type AdminDeleteWorkflowResponse struct
method ToWire (line 773) | func (v *AdminDeleteWorkflowResponse) ToWire() (wire.Value, error) {
method FromWire (line 826) | func (v *AdminDeleteWorkflowResponse) FromWire(w wire.Value) error {
method Encode (line 871) | func (v *AdminDeleteWorkflowResponse) Encode(sw stream.Writer) error {
method Decode (line 920) | func (v *AdminDeleteWorkflowResponse) Decode(sr stream.Reader) error {
method String (line 981) | func (v *AdminDeleteWorkflowResponse) String() string {
method Equals (line 1018) | func (v *AdminDeleteWorkflowResponse) Equals(rhs *AdminDeleteWorkflowR...
method MarshalLogObject (line 1039) | func (v *AdminDeleteWorkflowResponse) MarshalLogObject(enc zapcore.Obj...
method GetHistoryDeleted (line 1057) | func (v *AdminDeleteWorkflowResponse) GetHistoryDeleted() (o bool) {
method IsSetHistoryDeleted (line 1066) | func (v *AdminDeleteWorkflowResponse) IsSetHistoryDeleted() bool {
method GetExecutionsDeleted (line 1072) | func (v *AdminDeleteWorkflowResponse) GetExecutionsDeleted() (o bool) {
method IsSetExecutionsDeleted (line 1081) | func (v *AdminDeleteWorkflowResponse) IsSetExecutionsDeleted() bool {
method GetVisibilityDeleted (line 1087) | func (v *AdminDeleteWorkflowResponse) GetVisibilityDeleted() (o bool) {
method IsSetVisibilityDeleted (line 1096) | func (v *AdminDeleteWorkflowResponse) IsSetVisibilityDeleted() bool {
function _Bool_EqualsPtr (line 1004) | func _Bool_EqualsPtr(lhs, rhs *bool) bool {
type AdminMaintainWorkflowRequest (line 1100) | type AdminMaintainWorkflowRequest struct
method ToWire (line 1120) | func (v *AdminMaintainWorkflowRequest) ToWire() (wire.Value, error) {
method FromWire (line 1165) | func (v *AdminMaintainWorkflowRequest) FromWire(w wire.Value) error {
method Encode (line 1198) | func (v *AdminMaintainWorkflowRequest) Encode(sw stream.Writer) error {
method Decode (line 1235) | func (v *AdminMaintainWorkflowRequest) Decode(sr stream.Reader) error {
method String (line 1286) | func (v *AdminMaintainWorkflowRequest) String() string {
method Equals (line 1309) | func (v *AdminMaintainWorkflowRequest) Equals(rhs *AdminMaintainWorkfl...
method MarshalLogObject (line 1327) | func (v *AdminMaintainWorkflowRequest) MarshalLogObject(enc zapcore.Ob...
method GetDomain (line 1342) | func (v *AdminMaintainWorkflowRequest) GetDomain() (o string) {
method IsSetDomain (line 1351) | func (v *AdminMaintainWorkflowRequest) IsSetDomain() bool {
method GetExecution (line 1357) | func (v *AdminMaintainWorkflowRequest) GetExecution() (o *shared.Workf...
method IsSetExecution (line 1366) | func (v *AdminMaintainWorkflowRequest) IsSetExecution() bool {
type AdminMaintainWorkflowResponse (line 1370) | type AdminMaintainWorkflowResponse struct
method ToWire (line 1391) | func (v *AdminMaintainWorkflowResponse) ToWire() (wire.Value, error) {
method FromWire (line 1444) | func (v *AdminMaintainWorkflowResponse) FromWire(w wire.Value) error {
method Encode (line 1489) | func (v *AdminMaintainWorkflowResponse) Encode(sw stream.Writer) error {
method Decode (line 1538) | func (v *AdminMaintainWorkflowResponse) Decode(sr stream.Reader) error {
method String (line 1599) | func (v *AdminMaintainWorkflowResponse) String() string {
method Equals (line 1626) | func (v *AdminMaintainWorkflowResponse) Equals(rhs *AdminMaintainWorkf...
method MarshalLogObject (line 1647) | func (v *AdminMaintainWorkflowResponse) MarshalLogObject(enc zapcore.O...
method GetHistoryDeleted (line 1665) | func (v *AdminMaintainWorkflowResponse) GetHistoryDeleted() (o bool) {
method IsSetHistoryDeleted (line 1674) | func (v *AdminMaintainWorkflowResponse) IsSetHistoryDeleted() bool {
method GetExecutionsDeleted (line 1680) | func (v *AdminMaintainWorkflowResponse) GetExecutionsDeleted() (o bool) {
method IsSetExecutionsDeleted (line 1689) | func (v *AdminMaintainWorkflowResponse) IsSetExecutionsDeleted() bool {
method GetVisibilityDeleted (line 1695) | func (v *AdminMaintainWorkflowResponse) GetVisibilityDeleted() (o bool) {
method IsSetVisibilityDeleted (line 1704) | func (v *AdminMaintainWorkflowResponse) IsSetVisibilityDeleted() bool {
type DescribeClusterResponse (line 1708) | type DescribeClusterResponse struct
method ToWire (line 1767) | func (v *DescribeClusterResponse) ToWire() (wire.Value, error) {
method FromWire (line 1866) | func (v *DescribeClusterResponse) FromWire(w wire.Value) error {
method Encode (line 1931) | func (v *DescribeClusterResponse) Encode(sw stream.Writer) error {
method Decode (line 2038) | func (v *DescribeClusterResponse) Decode(sr stream.Reader) error {
method String (line 2093) | func (v *DescribeClusterResponse) String() string {
method Equals (line 2137) | func (v *DescribeClusterResponse) Equals(rhs *DescribeClusterResponse)...
method MarshalLogObject (line 2169) | func (v *DescribeClusterResponse) MarshalLogObject(enc zapcore.ObjectE...
method GetSupportedClientVersions (line 2187) | func (v *DescribeClusterResponse) GetSupportedClientVersions() (o *sha...
method IsSetSupportedClientVersions (line 2196) | func (v *DescribeClusterResponse) IsSetSupportedClientVersions() bool {
method GetMembershipInfo (line 2202) | func (v *DescribeClusterResponse) GetMembershipInfo() (o *MembershipIn...
method IsSetMembershipInfo (line 2211) | func (v *DescribeClusterResponse) IsSetMembershipInfo() bool {
method GetPersistenceInfo (line 2217) | func (v *DescribeClusterResponse) GetPersistenceInfo() (o map[string]*...
method IsSetPersistenceInfo (line 2226) | func (v *DescribeClusterResponse) IsSetPersistenceInfo() bool {
type _Map_String_PersistenceInfo_MapItemList (line 1714) | type _Map_String_PersistenceInfo_MapItemList
method ForEach (line 1716) | func (m _Map_String_PersistenceInfo_MapItemList) ForEach(f func(wire.M...
method Size (line 1738) | func (m _Map_String_PersistenceInfo_MapItemList) Size() int {
method KeyType (line 1742) | func (_Map_String_PersistenceInfo_MapItemList) KeyType() wire.Type {
method ValueType (line 1746) | func (_Map_String_PersistenceInfo_MapItemList) ValueType() wire.Type {
method Close (line 1750) | func (_Map_String_PersistenceInfo_MapItemList) Close() {}
function _SupportedClientVersions_Read (line 1803) | func _SupportedClientVersions_Read(w wire.Value) (*shared.SupportedClien...
function _MembershipInfo_Read (line 1809) | func _MembershipInfo_Read(w wire.Value) (*MembershipInfo, error) {
function _PersistenceInfo_Read (line 1815) | func _PersistenceInfo_Read(w wire.Value) (*PersistenceInfo, error) {
function _Map_String_PersistenceInfo_Read (line 1821) | func _Map_String_PersistenceInfo_Read(m wire.MapItemList) (map[string]*P...
function _Map_String_PersistenceInfo_Encode (line 1901) | func _Map_String_PersistenceInfo_Encode(val map[string]*PersistenceInfo,...
function _SupportedClientVersions_Decode (line 1975) | func _SupportedClientVersions_Decode(sr stream.Reader) (*shared.Supporte...
function _MembershipInfo_Decode (line 1981) | func _MembershipInfo_Decode(sr stream.Reader) (*MembershipInfo, error) {
function _PersistenceInfo_Decode (line 1987) | func _PersistenceInfo_Decode(sr stream.Reader) (*PersistenceInfo, error) {
function _Map_String_PersistenceInfo_Decode (line 1993) | func _Map_String_PersistenceInfo_Decode(sr stream.Reader) (map[string]*P...
function _Map_String_PersistenceInfo_Equals (line 2116) | func _Map_String_PersistenceInfo_Equals(lhs, rhs map[string]*Persistence...
type _Map_String_PersistenceInfo_Zapper (line 2156) | type _Map_String_PersistenceInfo_Zapper
method MarshalLogObject (line 2160) | func (m _Map_String_PersistenceInfo_Zapper) MarshalLogObject(enc zapco...
type DescribeWorkflowExecutionRequest (line 2230) | type DescribeWorkflowExecutionRequest struct
method ToWire (line 2250) | func (v *DescribeWorkflowExecutionRequest) ToWire() (wire.Value, error) {
method FromWire (line 2295) | func (v *DescribeWorkflowExecutionRequest) FromWire(w wire.Value) error {
method Encode (line 2328) | func (v *DescribeWorkflowExecutionRequest) Encode(sw stream.Writer) er...
method Decode (line 2365) | func (v *DescribeWorkflowExecutionRequest) Decode(sr stream.Reader) er...
method String (line 2416) | func (v *DescribeWorkflowExecutionRequest) String() string {
method Equals (line 2439) | func (v *DescribeWorkflowExecutionRequest) Equals(rhs *DescribeWorkflo...
method MarshalLogObject (line 2457) | func (v *DescribeWorkflowExecutionRequest) MarshalLogObject(enc zapcor...
method GetDomain (line 2472) | func (v *DescribeWorkflowExecutionRequest) GetDomain() (o string) {
method IsSetDomain (line 2481) | func (v *DescribeWorkflowExecutionRequest) IsSetDomain() bool {
method GetExecution (line 2487) | func (v *DescribeWorkflowExecutionRequest) GetExecution() (o *shared.W...
method IsSetExecution (line 2496) | func (v *DescribeWorkflowExecutionRequest) IsSetExecution() bool {
type DescribeWorkflowExecutionResponse (line 2500) | type DescribeWorkflowExecutionResponse struct
method ToWire (line 2522) | func (v *DescribeWorkflowExecutionResponse) ToWire() (wire.Value, erro...
method FromWire (line 2583) | func (v *DescribeWorkflowExecutionResponse) FromWire(w wire.Value) err...
method Encode (line 2638) | func (v *DescribeWorkflowExecutionResponse) Encode(sw stream.Writer) e...
method Decode (line 2699) | func (v *DescribeWorkflowExecutionResponse) Decode(sr stream.Reader) e...
method String (line 2768) | func (v *DescribeWorkflowExecutionResponse) String() string {
method Equals (line 2799) | func (v *DescribeWorkflowExecutionResponse) Equals(rhs *DescribeWorkfl...
method MarshalLogObject (line 2823) | func (v *DescribeWorkflowExecutionResponse) MarshalLogObject(enc zapco...
method GetShardId (line 2844) | func (v *DescribeWorkflowExecutionResponse) GetShardId() (o string) {
method IsSetShardId (line 2853) | func (v *DescribeWorkflowExecutionResponse) IsSetShardId() bool {
method GetHistoryAddr (line 2859) | func (v *DescribeWorkflowExecutionResponse) GetHistoryAddr() (o string) {
method IsSetHistoryAddr (line 2868) | func (v *DescribeWorkflowExecutionResponse) IsSetHistoryAddr() bool {
method GetMutableStateInCache (line 2874) | func (v *DescribeWorkflowExecutionResponse) GetMutableStateInCache() (...
method IsSetMutableStateInCache (line 2883) | func (v *DescribeWorkflowExecutionResponse) IsSetMutableStateInCache()...
method GetMutableStateInDatabase (line 2889) | func (v *DescribeWorkflowExecutionResponse) GetMutableStateInDatabase(...
method IsSetMutableStateInDatabase (line 2898) | func (v *DescribeWorkflowExecutionResponse) IsSetMutableStateInDatabas...
type GetDomainAsyncWorkflowConfiguratonRequest (line 2902) | type GetDomainAsyncWorkflowConfiguratonRequest struct
method ToWire (line 2921) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) ToWire() (wire.Val...
method FromWire (line 2958) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) FromWire(w wire.Va...
method Encode (line 2983) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) Encode(sw stream.W...
method Decode (line 3008) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) Decode(sr stream.R...
method String (line 3053) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) String() string {
method Equals (line 3072) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) Equals(rhs *GetDom...
method MarshalLogObject (line 3087) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) MarshalLogObject(e...
method GetDomain (line 3099) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) GetDomain() (o str...
method IsSetDomain (line 3108) | func (v *GetDomainAsyncWorkflowConfiguratonRequest) IsSetDomain() bool {
type GetDomainAsyncWorkflowConfiguratonResponse (line 3112) | type GetDomainAsyncWorkflowConfiguratonResponse struct
method ToWire (line 3131) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) ToWire() (wire.Va...
method FromWire (line 3174) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) FromWire(w wire.V...
method Encode (line 3197) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) Encode(sw stream....
method Decode (line 3228) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) Decode(sr stream....
method String (line 3271) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) String() string {
method Equals (line 3290) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) Equals(rhs *GetDo...
method MarshalLogObject (line 3305) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) MarshalLogObject(...
method GetConfiguration (line 3317) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) GetConfiguration(...
method IsSetConfiguration (line 3326) | func (v *GetDomainAsyncWorkflowConfiguratonResponse) IsSetConfiguratio...
function _AsyncWorkflowConfiguration_Read (line 3151) | func _AsyncWorkflowConfiguration_Read(w wire.Value) (*shared.AsyncWorkfl...
function _AsyncWorkflowConfiguration_Decode (line 3217) | func _AsyncWorkflowConfiguration_Decode(sr stream.Reader) (*shared.Async...
type GetDomainIsolationGroupsRequest (line 3330) | type GetDomainIsolationGroupsRequest struct
method ToWire (line 3349) | func (v *GetDomainIsolationGroupsRequest) ToWire() (wire.Value, error) {
method FromWire (line 3386) | func (v *GetDomainIsolationGroupsRequest) FromWire(w wire.Value) error {
method Encode (line 3411) | func (v *GetDomainIsolationGroupsRequest) Encode(sw stream.Writer) err...
method Decode (line 3436) | func (v *GetDomainIsolationGroupsRequest) Decode(sr stream.Reader) err...
method String (line 3481) | func (v *GetDomainIsolationGroupsRequest) String() string {
method Equals (line 3500) | func (v *GetDomainIsolationGroupsRequest) Equals(rhs *GetDomainIsolati...
method MarshalLogObject (line 3515) | func (v *GetDomainIsolationGroupsRequest) MarshalLogObject(enc zapcore...
method GetDomain (line 3527) | func (v *GetDomainIsolationGroupsRequest) GetDomain() (o string) {
method IsSetDomain (line 3536) | func (v *GetDomainIsolationGroupsRequest) IsSetDomain() bool {
type GetDomainIsolationGroupsResponse (line 3540) | type GetDomainIsolationGroupsResponse struct
method ToWire (line 3559) | func (v *GetDomainIsolationGroupsResponse) ToWire() (wire.Value, error) {
method FromWire (line 3602) | func (v *GetDomainIsolationGroupsResponse) FromWire(w wire.Value) error {
method Encode (line 3625) | func (v *GetDomainIsolationGroupsResponse) Encode(sw stream.Writer) er...
method Decode (line 3656) | func (v *GetDomainIsolationGroupsResponse) Decode(sr stream.Reader) er...
method String (line 3699) | func (v *GetDomainIsolationGroupsResponse) String() string {
method Equals (line 3718) | func (v *GetDomainIsolationGroupsResponse) Equals(rhs *GetDomainIsolat...
method MarshalLogObject (line 3733) | func (v *GetDomainIsolationGroupsResponse) MarshalLogObject(enc zapcor...
method GetIsolationGroups (line 3745) | func (v *GetDomainIsolationGroupsResponse) GetIsolationGroups() (o *sh...
method IsSetIsolationGroups (line 3754) | func (v *GetDomainIsolationGroupsResponse) IsSetIsolationGroups() bool {
function _IsolationGroupConfiguration_Read (line 3579) | func _IsolationGroupConfiguration_Read(w wire.Value) (*shared.IsolationG...
function _IsolationGroupConfiguration_Decode (line 3645) | func _IsolationGroupConfiguration_Decode(sr stream.Reader) (*shared.Isol...
type GetDynamicConfigRequest (line 3758) | type GetDynamicConfigRequest struct
method ToWire (line 3807) | func (v *GetDynamicConfigRequest) ToWire() (wire.Value, error) {
method FromWire (line 3876) | func (v *GetDynamicConfigRequest) FromWire(w wire.Value) error {
method Encode (line 3930) | func (v *GetDynamicConfigRequest) Encode(sw stream.Writer) error {
method Decode (line 4003) | func (v *GetDynamicConfigRequest) Decode(sr stream.Reader) error {
method String (line 4054) | func (v *GetDynamicConfigRequest) String() string {
method Equals (line 4092) | func (v *GetDynamicConfigRequest) Equals(rhs *GetDynamicConfigRequest)...
method MarshalLogObject (line 4121) | func (v *GetDynamicConfigRequest) MarshalLogObject(enc zapcore.ObjectE...
method GetConfigName (line 4136) | func (v *GetDynamicConfigRequest) GetConfigName() (o string) {
method IsSetConfigName (line 4145) | func (v *GetDynamicConfigRequest) IsSetConfigName() bool {
method GetFilters (line 4151) | func (v *GetDynamicConfigRequest) GetFilters() (o []*config.DynamicCon...
method IsSetFilters (line 4160) | func (v *GetDynamicConfigRequest) IsSetFilters() bool {
type _List_DynamicConfigFilter_ValueList (line 3763) | type _List_DynamicConfigFilter_ValueList
method ForEach (line 3765) | func (v _List_DynamicConfigFilter_ValueList) ForEach(f func(wire.Value...
method Size (line 3782) | func (v _List_DynamicConfigFilter_ValueList) Size() int {
method ValueType (line 3786) | func (_List_DynamicConfigFilter_ValueList) ValueType() wire.Type {
method Close (line 3790) | func (_List_DynamicConfigFilter_ValueList) Close() {}
function _DynamicConfigFilter_Read (line 3835) | func _DynamicConfigFilter_Read(w wire.Value) (*config.DynamicConfigFilte...
function _List_DynamicConfigFilter_Read (line 3841) | func _List_DynamicConfigFilter_Read(l wire.ValueList) ([]*config.Dynamic...
function _List_DynamicConfigFilter_Encode (line 3905) | func _List_DynamicConfigFilter_Encode(val []*config.DynamicConfigFilter,...
function _DynamicConfigFilter_Decode (line 3962) | func _DynamicConfigFilter_Decode(sr stream.Reader) (*config.DynamicConfi...
function _List_DynamicConfigFilter_Decode (line 3968) | func _List_DynamicConfigFilter_Decode(sr stream.Reader) ([]*config.Dynam...
function _List_DynamicConfigFilter_Equals (line 4073) | func _List_DynamicConfigFilter_Equals(lhs, rhs []*config.DynamicConfigFi...
type _List_DynamicConfigFilter_Zapper (line 4108) | type _List_DynamicConfigFilter_Zapper
method MarshalLogArray (line 4112) | func (l _List_DynamicConfigFilter_Zapper) MarshalLogArray(enc zapcore....
type GetDynamicConfigResponse (line 4164) | type GetDynamicConfigResponse struct
method ToWire (line 4183) | func (v *GetDynamicConfigResponse) ToWire() (wire.Value, error) {
method FromWire (line 4226) | func (v *GetDynamicConfigResponse) FromWire(w wire.Value) error {
method Encode (line 4249) | func (v *GetDynamicConfigResponse) Encode(sw stream.Writer) error {
method Decode (line 4280) | func (v *GetDynamicConfigResponse) Decode(sr stream.Reader) error {
method String (line 4323) | func (v *GetDynamicConfigResponse) String() string {
method Equals (line 4342) | func (v *GetDynamicConfigResponse) Equals(rhs *GetDynamicConfigRespons...
method MarshalLogObject (line 4357) | func (v *GetDynamicConfigResponse) MarshalLogObject(enc zapcore.Object...
method GetValue (line 4369) | func (v *GetDynamicConfigResponse) GetValue() (o *shared.DataBlob) {
method IsSetValue (line 4378) | func (v *GetDynamicConfigResponse) IsSetValue() bool {
function _DataBlob_Read (line 4203) | func _DataBlob_Read(w wire.Value) (*shared.DataBlob, error) {
function _DataBlob_Decode (line 4269) | func _DataBlob_Decode(sr stream.Reader) (*shared.DataBlob, error) {
type GetGlobalIsolationGroupsRequest (line 4382) | type GetGlobalIsolationGroupsRequest struct
method ToWire (line 4400) | func (v *GetGlobalIsolationGroupsRequest) ToWire() (wire.Value, error) {
method FromWire (line 4426) | func (v *GetGlobalIsolationGroupsRequest) FromWire(w wire.Value) error {
method Encode (line 4440) | func (v *GetGlobalIsolationGroupsRequest) Encode(sw stream.Writer) err...
method Decode (line 4453) | func (v *GetGlobalIsolationGroupsRequest) Decode(sr stream.Reader) err...
method String (line 4490) | func (v *GetGlobalIsolationGroupsRequest) String() string {
method Equals (line 4505) | func (v *GetGlobalIsolationGroupsRequest) Equals(rhs *GetGlobalIsolati...
method MarshalLogObject (line 4517) | func (v *GetGlobalIsolationGroupsRequest) MarshalLogObject(enc zapcore...
type GetGlobalIsolationGroupsResponse (line 4524) | type GetGlobalIsolationGroupsResponse struct
method ToWire (line 4543) | func (v *GetGlobalIsolationGroupsResponse) ToWire() (wire.Value, error) {
method FromWire (line 4580) | func (v *GetGlobalIsolationGroupsResponse) FromWire(w wire.Value) error {
method Encode (line 4603) | func (v *GetGlobalIsolationGroupsResponse) Encode(sw stream.Writer) er...
method Decode (line 4628) | func (v *GetGlobalIsolationGroupsResponse) Decode(sr stream.Reader) er...
method String (line 4671) | func (v *GetGlobalIsolationGroupsResponse) String() string {
method Equals (line 4690) | func (v *GetGlobalIsolationGroupsResponse) Equals(rhs *GetGlobalIsolat...
method MarshalLogObject (line 4705) | func (v *GetGlobalIsolationGroupsResponse) MarshalLogObject(enc zapcor...
method GetIsolationGroups (line 4717) | func (v *GetGlobalIsolationGroupsResponse) GetIsolationGroups() (o *sh...
method IsSetIsolationGroups (line 4726) | func (v *GetGlobalIsolationGroupsResponse) IsSetIsolationGroups() bool {
type GetWorkflowExecutionRawHistoryV2Request (line 4732) | type GetWorkflowExecutionRawHistoryV2Request struct
method ToWire (line 4758) | func (v *GetWorkflowExecutionRawHistoryV2Request) ToWire() (wire.Value...
method FromWire (line 4851) | func (v *GetWorkflowExecutionRawHistoryV2Request) FromWire(w wire.Valu...
method Encode (line 4942) | func (v *GetWorkflowExecutionRawHistoryV2Request) Encode(sw stream.Wri...
method Decode (line 5051) | func (v *GetWorkflowExecutionRawHistoryV2Request) Decode(sr stream.Rea...
method String (line 5148) | func (v *GetWorkflowExecutionRawHistoryV2Request) String() string {
method Equals (line 5215) | func (v *GetWorkflowExecutionRawHistoryV2Request) Equals(rhs *GetWorkf...
method MarshalLogObject (line 5251) | func (v *GetWorkflowExecutionRawHistoryV2Request) MarshalLogObject(enc...
method GetDomain (line 5284) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetDomain() (o strin...
method IsSetDomain (line 5293) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetDomain() bool {
method GetExecution (line 5299) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetExecution() (o *s...
method IsSetExecution (line 5308) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetExecution() bool {
method GetStartEventId (line 5314) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetStartEventId() (o...
method IsSetStartEventId (line 5323) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetStartEventId() ...
method GetStartEventVersion (line 5329) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetStartEventVersion...
method IsSetStartEventVersion (line 5338) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetStartEventVersi...
method GetEndEventId (line 5344) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetEndEventId() (o i...
method IsSetEndEventId (line 5353) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetEndEventId() bo...
method GetEndEventVersion (line 5359) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetEndEventVersion()...
method IsSetEndEventVersion (line 5368) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetEndEventVersion...
method GetMaximumPageSize (line 5374) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetMaximumPageSize()...
method IsSetMaximumPageSize (line 5383) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetMaximumPageSize...
method GetNextPageToken (line 5389) | func (v *GetWorkflowExecutionRawHistoryV2Request) GetNextPageToken() (...
method IsSetNextPageToken (line 5398) | func (v *GetWorkflowExecutionRawHistoryV2Request) IsSetNextPageToken()...
function _I64_EqualsPtr (line 5191) | func _I64_EqualsPtr(lhs, rhs *int64) bool {
function _I32_EqualsPtr (line 5201) | func _I32_EqualsPtr(lhs, rhs *int32) bool {
type GetWorkflowExecutionRawHistoryV2Response (line 5402) | type GetWorkflowExecutionRawHistoryV2Response struct
method ToWire (line 5452) | func (v *GetWorkflowExecutionRawHistoryV2Response) ToWire() (wire.Valu...
method FromWire (line 5529) | func (v *GetWorkflowExecutionRawHistoryV2Response) FromWire(w wire.Val...
method Encode (line 5589) | func (v *GetWorkflowExecutionRawHistoryV2Response) Encode(sw stream.Wr...
method Decode (line 5674) | func (v *GetWorkflowExecutionRawHistoryV2Response) Decode(sr stream.Re...
method String (line 5729) | func (v *GetWorkflowExecutionRawHistoryV2Response) String() string {
method Equals (line 5771) | func (v *GetWorkflowExecutionRawHistoryV2Response) Equals(rhs *GetWork...
method MarshalLogObject (line 5803) | func (v *GetWorkflowExecutionRawHistoryV2Response) MarshalLogObject(en...
method GetNextPageToken (line 5821) | func (v *GetWorkflowExecutionRawHistoryV2Response) GetNextPageToken() ...
method IsSetNextPageToken (line 5830) | func (v *GetWorkflowExecutionRawHistoryV2Response) IsSetNextPageToken(...
method GetHistoryBatches (line 5836) | func (v *GetWorkflowExecutionRawHistoryV2Response) GetHistoryBatches()...
method IsSetHistoryBatches (line 5845) | func (v *GetWorkflowExecutionRawHistoryV2Response) IsSetHistoryBatches...
method GetVersionHistory (line 5851) | func (v *GetWorkflowExecutionRawHistoryV2Response) GetVersionHistory()...
method IsSetVersionHistory (line 5860) | func (v *GetWorkflowExecutionRawHistoryV2Response) IsSetVersionHistory...
type _List_DataBlob_ValueList (line 5408) | type _List_DataBlob_ValueList
method ForEach (line 5410) | func (v _List_DataBlob_ValueList) ForEach(f func(wire.Value) error) er...
method Size (line 5427) | func (v _List_DataBlob_ValueList) Size() int {
method ValueType (line 5431) | func (_List_DataBlob_ValueList) ValueType() wire.Type {
method Close (line 5435) | func (_List_DataBlob_ValueList) Close() {}
function _List_DataBlob_Read (line 5488) | func _List_DataBlob_Read(l wire.ValueList) ([]*shared.DataBlob, error) {
function _VersionHistory_Read (line 5506) | func _VersionHistory_Read(w wire.Value) (*shared.VersionHistory, error) {
function _List_DataBlob_Encode (line 5564) | func _List_DataBlob_Encode(val []*shared.DataBlob, sw stream.Writer) err...
function _List_DataBlob_Decode (line 5633) | func _List_DataBlob_Decode(sr stream.Reader) ([]*shared.DataBlob, error) {
function _VersionHistory_Decode (line 5663) | func _VersionHistory_Decode(sr stream.Reader) (*shared.VersionHistory, e...
function _List_DataBlob_Equals (line 5752) | func _List_DataBlob_Equals(lhs, rhs []*shared.DataBlob) bool {
type _List_DataBlob_Zapper (line 5790) | type _List_DataBlob_Zapper
method MarshalLogArray (line 5794) | func (l _List_DataBlob_Zapper) MarshalLogArray(enc zapcore.ArrayEncode...
type HostInfo (line 5864) | type HostInfo struct
method ToWire (line 5883) | func (v *HostInfo) ToWire() (wire.Value, error) {
method FromWire (line 5920) | func (v *HostInfo) FromWire(w wire.Value) error {
method Encode (line 5945) | func (v *HostInfo) Encode(sw stream.Writer) error {
method Decode (line 5970) | func (v *HostInfo) Decode(sr stream.Reader) error {
method String (line 6015) | func (v *HostInfo) String() string {
method Equals (line 6034) | func (v *HostInfo) Equals(rhs *HostInfo) bool {
method MarshalLogObject (line 6049) | func (v *HostInfo) MarshalLogObject(enc zapcore.ObjectEncoder) (err er...
method GetIdentity (line 6061) | func (v *HostInfo) GetIdentity() (o string) {
method IsSetIdentity (line 6070) | func (v *HostInfo) IsSetIdentity() bool {
type ListDynamicConfigRequest (line 6074) | type ListDynamicConfigRequest struct
method ToWire (line 6093) | func (v *ListDynamicConfigRequest) ToWire() (wire.Value, error) {
method FromWire (line 6130) | func (v *ListDynamicConfigRequest) FromWire(w wire.Value) error {
method Encode (line 6155) | func (v *ListDynamicConfigRequest) Encode(sw stream.Writer) error {
method Decode (line 6180) | func (v *ListDynamicConfigRequest) Decode(sr stream.Reader) error {
method String (line 6225) | func (v *ListDynamicConfigRequest) String() string {
method Equals (line 6244) | func (v *ListDynamicConfigRequest) Equals(rhs *ListDynamicConfigReques...
method MarshalLogObject (line 6259) | func (v *ListDynamicConfigRequest) MarshalLogObject(enc zapcore.Object...
method GetConfigName (line 6271) | func (v *ListDynamicConfigRequest) GetConfigName() (o string) {
method IsSetConfigName (line 6280) | func (v *ListDynamicConfigRequest) IsSetConfigName() bool {
type ListDynamicConfigResponse (line 6284) | type ListDynamicConfigResponse struct
method ToWire (line 6332) | func (v *ListDynamicConfigResponse) ToWire() (wire.Value, error) {
method FromWire (line 6393) | func (v *ListDynamicConfigResponse) FromWire(w wire.Value) error {
method Encode (line 6437) | func (v *ListDynamicConfigResponse) Encode(sw stream.Writer) error {
method Decode (line 6498) | func (v *ListDynamicConfigResponse) Decode(sr stream.Reader) error {
method String (line 6541) | func (v *ListDynamicConfigResponse) String() string {
method Equals (line 6575) | func (v *ListDynamicConfigResponse) Equals(rhs *ListDynamicConfigRespo...
method MarshalLogObject (line 6601) | func (v *ListDynamicConfigResponse) MarshalLogObject(enc zapcore.Objec...
method GetEntries (line 6613) | func (v *ListDynamicConfigResponse) GetEntries() (o []*config.DynamicC...
method IsSetEntries (line 6622) | func (v *ListDynamicConfigResponse) IsSetEntries() bool {
type _List_DynamicConfigEntry_ValueList (line 6288) | type _List_DynamicConfigEntry_ValueList
method ForEach (line 6290) | func (v _List_DynamicConfigEntry_ValueList) ForEach(f func(wire.Value)...
method Size (line 6307) | func (v _List_DynamicConfigEntry_ValueList) Size() int {
method ValueType (line 6311) | func (_List_DynamicConfigEntry_ValueList) ValueType() wire.Type {
method Close (line 6315) | func (_List_DynamicConfigEntry_ValueList) Close() {}
function _DynamicConfigEntry_Read (line 6352) | func _DynamicConfigEntry_Read(w wire.Value) (*config.DynamicConfigEntry,...
function _List_DynamicConfigEntry_Read (line 6358) | func _List_DynamicConfigEntry_Read(l wire.ValueList) ([]*config.DynamicC...
function _List_DynamicConfigEntry_Encode (line 6412) | func _List_DynamicConfigEntry_Encode(val []*config.DynamicConfigEntry, s...
function _DynamicConfigEntry_Decode (line 6457) | func _DynamicConfigEntry_Decode(sr stream.Reader) (*config.DynamicConfig...
function _List_DynamicConfigEntry_Decode (line 6463) | func _List_DynamicConfigEntry_Decode(sr stream.Reader) ([]*config.Dynami...
function _List_DynamicConfigEntry_Equals (line 6556) | func _List_DynamicConfigEntry_Equals(lhs, rhs []*config.DynamicConfigEnt...
type _List_DynamicConfigEntry_Zapper (line 6588) | type _List_DynamicConfigEntry_Zapper
method MarshalLogArray (line 6592) | func (l _List_DynamicConfigEntry_Zapper) MarshalLogArray(enc zapcore.A...
type MembershipInfo (line 6626) | type MembershipInfo struct
method ToWire (line 6702) | func (v *MembershipInfo) ToWire() (wire.Value, error) {
method FromWire (line 6803) | func (v *MembershipInfo) FromWire(w wire.Value) error {
method Encode (line 6881) | func (v *MembershipInfo) Encode(sw stream.Writer) error {
method Decode (line 7002) | func (v *MembershipInfo) Decode(sr stream.Reader) error {
method String (line 7057) | func (v *MembershipInfo) String() string {
method Equals (line 7114) | func (v *MembershipInfo) Equals(rhs *MembershipInfo) bool {
method MarshalLogObject (line 7157) | func (v *MembershipInfo) MarshalLogObject(enc zapcore.ObjectEncoder) (...
method GetCurrentHost (line 7175) | func (v *MembershipInfo) GetCurrentHost() (o *HostInfo) {
method IsSetCurrentHost (line 7184) | func (v *MembershipInfo) IsSetCurrentHost() bool {
method GetReachableMembers (line 7190) | func (v *MembershipInfo) GetReachableMembers() (o []string) {
method IsSetReachableMembers (line 7199) | func (v *MembershipInfo) IsSetReachableMembers() bool {
method GetRings (line 7205) | func (v *MembershipInfo) GetRings() (o []*RingInfo) {
method IsSetRings (line 7214) | func (v *MembershipInfo) IsSetRings() bool {
type _List_String_ValueList (line 6632) | type _List_String_ValueList
method ForEach (line 6634) | func (v _List_String_ValueList) ForEach(f func(wire.Value) error) error {
method Size (line 6648) | func (v _List_String_ValueList) Size() int {
method ValueType (line 6652) | func (_List_String_ValueList) ValueType() wire.Type {
method Close (line 6656) | func (_List_String_ValueList) Close() {}
type _List_RingInfo_ValueList (line 6658) | type _List_RingInfo_ValueList
method ForEach (line 6660) | func (v _List_RingInfo_ValueList) ForEach(f func(wire.Value) error) er...
method Size (line 6677) | func (v _List_RingInfo_ValueList) Size() int {
method ValueType (line 6681) | func (_List_RingInfo_ValueList) ValueType() wire.Type {
method Close (line 6685) | func (_List_RingInfo_ValueList) Close() {}
function _HostInfo_Read (line 6738) | func _HostInfo_Read(w wire.Value) (*HostInfo, error) {
function _List_String_Read (line 6744) | func _List_String_Read(l wire.ValueList) ([]string, error) {
function _RingInfo_Read (line 6762) | func _RingInfo_Read(w wire.Value) (*RingInfo, error) {
function _List_RingInfo_Read (line 6768) | func _List_RingInfo_Read(l wire.ValueList) ([]*RingInfo, error) {
function _List_String_Encode (line 6838) | func _List_String_Encode(val []string, sw stream.Writer) error {
function _List_RingInfo_Encode (line 6856) | func _List_RingInfo_Encode(val []*RingInfo, sw stream.Writer) error {
function _HostInfo_Decode (line 6925) | func _HostInfo_Decode(sr stream.Reader) (*HostInfo, error) {
function _List_String_Decode (line 6931) | func _List_String_Decode(sr stream.Reader) ([]string, error) {
function _RingInfo_Decode (line 6961) | func _RingInfo_Decode(sr stream.Reader) (*RingInfo, error) {
function _List_RingInfo_Decode (line 6967) | func _List_RingInfo_Decode(sr stream.Reader) ([]*RingInfo, error) {
function _List_String_Equals (line 7080) | func _List_String_Equals(lhs, rhs []string) bool {
function _List_RingInfo_Equals (line 7095) | func _List_RingInfo_Equals(lhs, rhs []*RingInfo) bool {
type _List_String_Zapper (line 7133) | type _List_String_Zapper
method MarshalLogArray (line 7137) | func (l _List_String_Zapper) MarshalLogArray(enc zapcore.ArrayEncoder)...
type _List_RingInfo_Zapper (line 7144) | type _List_RingInfo_Zapper
method MarshalLogArray (line 7148) | func (l _List_RingInfo_Zapper) MarshalLogArray(enc zapcore.ArrayEncode...
type PersistenceFeature (line 7218) | type PersistenceFeature struct
method ToWire (line 7238) | func (v *PersistenceFeature) ToWire() (wire.Value, error) {
method FromWire (line 7283) | func (v *PersistenceFeature) FromWire(w wire.Value) error {
method Encode (line 7318) | func (v *PersistenceFeature) Encode(sw stream.Writer) error {
method Decode (line 7355) | func (v *PersistenceFeature) Decode(sr stream.Reader) error {
method String (line 7408) | func (v *PersistenceFeature) String() string {
method Equals (line 7431) | func (v *PersistenceFeature) Equals(rhs *PersistenceFeature) bool {
method MarshalLogObject (line 7449) | func (v *PersistenceFeature) MarshalLogObject(enc zapcore.ObjectEncode...
method GetKey (line 7464) | func (v *PersistenceFeature) GetKey() (o string) {
method IsSetKey (line 7473) | func (v *PersistenceFeature) IsSetKey() bool {
method GetEnabled (line 7479) | func (v *PersistenceFeature) GetEnabled() (o bool) {
method IsSetEnabled (line 7488) | func (v *PersistenceFeature) IsSetEnabled() bool {
type PersistenceInfo (line 7492) | type PersistenceInfo struct
method ToWire (line 7571) | func (v *PersistenceInfo) ToWire() (wire.Value, error) {
method FromWire (line 7672) | func (v *PersistenceInfo) FromWire(w wire.Value) error {
method Encode (line 7755) | func (v *PersistenceInfo) Encode(sw stream.Writer) error {
method Decode (line 7876) | func (v *PersistenceInfo) Decode(sr stream.Reader) error {
method String (line 7933) | func (v *PersistenceInfo) String() string {
method Equals (line 7990) | func (v *PersistenceInfo) Equals(rhs *PersistenceInfo) bool {
method MarshalLogObject (line 8033) | func (v *PersistenceInfo) MarshalLogObject(enc zapcore.ObjectEncoder) ...
method GetBackend (line 8051) | func (v *PersistenceInfo) GetBackend() (o string) {
method IsSetBackend (line 8060) | func (v *PersistenceInfo) IsSetBackend() bool {
method GetSettings (line 8066) | func (v *PersistenceInfo) GetSettings() (o []*PersistenceSetting) {
method IsSetSettings (line 8075) | func (v *PersistenceInfo) IsSetSettings() bool {
method GetFeatures (line 8081) | func (v *PersistenceInfo) GetFeatures() (o []*PersistenceFeature) {
method IsSetFeatures (line 8090) | func (v *PersistenceInfo) IsSetFeatures() bool {
type _List_PersistenceSetting_ValueList (line 7498) | type _List_PersistenceSetting_ValueList
method ForEach (line 7500) | func (v _List_PersistenceSetting_ValueList) ForEach(f func(wire.Value)...
method Size (line 7517) | func (v _List_PersistenceSetting_ValueList) Size() int {
method ValueType (line 7521) | func (_List_PersistenceSetting_ValueList) ValueType() wire.Type {
method Close (line 7525) | func (_List_PersistenceSetting_ValueList) Close() {}
type _List_PersistenceFeature_ValueList (line 7527) | type _List_PersistenceFeature_ValueList
method ForEach (line 7529) | func (v _List_PersistenceFeature_ValueList) ForEach(f func(wire.Value)...
method Size (line 7546) | func (v _List_PersistenceFeature_ValueList) Size() int {
method ValueType (line 7550) | func (_List_PersistenceFeature_ValueList) ValueType() wire.Type {
method Close (line 7554) | func (_List_PersistenceFeature_ValueList) Close() {}
function _PersistenceSetting_Read (line 7607) | func _PersistenceSetting_Read(w wire.Value) (*PersistenceSetting, error) {
function _List_PersistenceSetting_Read (line 7613) | func _List_PersistenceSetting_Read(l wire.ValueList) ([]*PersistenceSett...
function _PersistenceFeature_Read (line 7631) | func _PersistenceFeature_Read(w wire.Value) (*PersistenceFeature, error) {
function _List_PersistenceFeature_Read (line 7637) | func _List_PersistenceFeature_Read(l wire.ValueList) ([]*PersistenceFeat...
function _List_PersistenceSetting_Encode (line 7709) | func _List_PersistenceSetting_Encode(val []*PersistenceSetting, sw strea...
function _List_PersistenceFeature_Encode (line 7730) | func _List_PersistenceFeature_Encode(val []*PersistenceFeature, sw strea...
function _PersistenceSetting_Decode (line 7799) | func _PersistenceSetting_Decode(sr stream.Reader) (*PersistenceSetting, ...
function _List_PersistenceSetting_Decode (line 7805) | func _List_PersistenceSetting_Decode(sr stream.Reader) ([]*PersistenceSe...
function _PersistenceFeature_Decode (line 7835) | func _PersistenceFeature_Decode(sr stream.Reader) (*PersistenceFeature, ...
function _List_PersistenceFeature_Decode (line 7841) | func _List_PersistenceFeature_Decode(sr stream.Reader) ([]*PersistenceFe...
function _List_PersistenceSetting_Equals (line 7956) | func _List_PersistenceSetting_Equals(lhs, rhs []*PersistenceSetting) bool {
function _List_PersistenceFeature_Equals (line 7971) | func _List_PersistenceFeature_Equals(lhs, rhs []*PersistenceFeature) bool {
type _List_PersistenceSetting_Zapper (line 8009) | type _List_PersistenceSetting_Zapper
method MarshalLogArray (line 8013) | func (l _List_PersistenceSetting_Zapper) MarshalLogArray(enc zapcore.A...
type _List_PersistenceFeature_Zapper (line 8020) | type _List_PersistenceFeature_Zapper
method MarshalLogArray (line 8024) | func (l _List_PersistenceFeature_Zapper) MarshalLogArray(enc zapcore.A...
type PersistenceSetting (line 8094) | type PersistenceSetting struct
method ToWire (line 8114) | func (v *PersistenceSetting) ToWire() (wire.Value, error) {
method FromWire (line 8159) | func (v *PersistenceSetting) FromWire(w wire.Value) error {
method Encode (line 8194) | func (v *PersistenceSetting) Encode(sw stream.Writer) error {
method Decode (line 8231) | func (v *PersistenceSetting) Decode(sr stream.Reader) error {
method String (line 8284) | func (v *PersistenceSetting) String() string {
method Equals (line 8307) | func (v *PersistenceSetting) Equals(rhs *PersistenceSetting) bool {
method MarshalLogObject (line 8325) | func (v *PersistenceSetting) MarshalLogObject(enc zapcore.ObjectEncode...
method GetKey (line 8340) | func (v *PersistenceSetting) GetKey() (o string) {
method IsSetKey (line 8349) | func (v *PersistenceSetting) IsSetKey() bool {
method GetValue (line 8355) | func (v *PersistenceSetting) GetValue() (o string) {
method IsSetValue (line 8364) | func (v *PersistenceSetting) IsSetValue() bool {
type ResendReplicationTasksRequest (line 8368) | type ResendReplicationTasksRequest struct
method ToWire (line 8394) | func (v *ResendReplicationTasksRequest) ToWire() (wire.Value, error) {
method FromWire (line 8487) | func (v *ResendReplicationTasksRequest) FromWire(w wire.Value) error {
method Encode (line 8582) | func (v *ResendReplicationTasksRequest) Encode(sw stream.Writer) error {
method Decode (line 8691) | func (v *ResendReplicationTasksRequest) Decode(sr stream.Reader) error {
method String (line 8792) | func (v *ResendReplicationTasksRequest) String() string {
method Equals (line 8839) | func (v *ResendReplicationTasksRequest) Equals(rhs *ResendReplicationT...
method MarshalLogObject (line 8875) | func (v *ResendReplicationTasksRequest) MarshalLogObject(enc zapcore.O...
method GetDomainID (line 8908) | func (v *ResendReplicationTasksRequest) GetDomainID() (o string) {
method IsSetDomainID (line 8917) | func (v *ResendReplicationTasksRequest) IsSetDomainID() bool {
method GetWorkflowID (line 8923) | func (v *ResendReplicationTasksRequest) GetWorkflowID() (o string) {
method IsSetWorkflowID (line 8932) | func (v *ResendReplicationTasksRequest) IsSetWorkflowID() bool {
method GetRunID (line 8938) | func (v *ResendReplicationTasksRequest) GetRunID() (o string) {
method IsSetRunID (line 8947) | func (v *ResendReplicationTasksRequest) IsSetRunID() bool {
method GetRemoteCluster (line 8953) | func (v *ResendReplicationTasksRequest) GetRemoteCluster() (o string) {
method IsSetRemoteCluster (line 8962) | func (v *ResendReplicationTasksRequest) IsSetRemoteCluster() bool {
method GetStartEventID (line 8968) | func (v *ResendReplicationTasksRequest) GetStartEventID() (o int64) {
method IsSetStartEventID (line 8977) | func (v *ResendReplicationTasksRequest) IsSetStartEventID() bool {
method GetStartVersion (line 8983) | func (v *ResendReplicationTasksRequest) GetStartVersion() (o int64) {
method IsSetStartVersion (line 8992) | func (v *ResendReplicationTasksRequest) IsSetStartVersion() bool {
method GetEndEventID (line 8998) | func (v *ResendReplicationTasksRequest) GetEndEventID() (o int64) {
method IsSetEndEventID (line 9007) | func (v *ResendReplicationTasksRequest) IsSetEndEventID() bool {
method GetEndVersion (line 9013) | func (v *ResendReplicationTasksRequest) GetEndVersion() (o int64) {
method IsSetEndVersion (line 9022) | func (v *ResendReplicationTasksRequest) IsSetEndVersion() bool {
type RestoreDynamicConfigRequest (line 9026) | type RestoreDynamicConfigRequest struct
method ToWire (line 9046) | func (v *RestoreDynamicConfigRequest) ToWire() (wire.Value, error) {
method FromWire (line 9091) | func (v *RestoreDynamicConfigRequest) FromWire(w wire.Value) error {
method Encode (line 9124) | func (v *RestoreDynamicConfigRequest) Encode(sw stream.Writer) error {
method Decode (line 9161) | func (v *RestoreDynamicConfigRequest) Decode(sr stream.Reader) error {
method String (line 9212) | func (v *RestoreDynamicConfigRequest) String() string {
method Equals (line 9235) | func (v *RestoreDynamicConfigRequest) Equals(rhs *RestoreDynamicConfig...
method MarshalLogObject (line 9253) | func (v *RestoreDynamicConfigRequest) MarshalLogObject(enc zapcore.Obj...
method GetConfigName (line 9268) | func (v *RestoreDynamicConfigRequest) GetConfigName() (o string) {
method IsSetConfigName (line 9277) | func (v *RestoreDynamicConfigRequest) IsSetConfigName() bool {
method GetFilters (line 9283) | func (v *RestoreDynamicConfigRequest) GetFilters() (o []*config.Dynami...
method IsSetFilters (line 9292) | func (v *RestoreDynamicConfigRequest) IsSetFilters() bool {
type RingInfo (line 9296) | type RingInfo struct
method ToWire (line 9346) | func (v *RingInfo) ToWire() (wire.Value, error) {
method FromWire (line 9417) | func (v *RingInfo) FromWire(w wire.Value) error {
method Encode (line 9481) | func (v *RingInfo) Encode(sw stream.Writer) error {
method Decode (line 9560) | func (v *RingInfo) Decode(sr stream.Reader) error {
method String (line 9619) | func (v *RingInfo) String() string {
method Equals (line 9661) | func (v *RingInfo) Equals(rhs *RingInfo) bool {
method MarshalLogObject (line 9693) | func (v *RingInfo) MarshalLogObject(enc zapcore.ObjectEncoder) (err er...
method GetRole (line 9711) | func (v *RingInfo) GetRole() (o string) {
method IsSetRole (line 9720) | func (v *RingInfo) IsSetRole() bool {
method GetMemberCount (line 9726) | func (v *RingInfo) GetMemberCount() (o int32) {
method IsSetMemberCount (line 9735) | func (v *RingInfo) IsSetMemberCount() bool {
method GetMembers (line 9741) | func (v *RingInfo) GetMembers() (o []*HostInfo) {
method IsSetMembers (line 9750) | func (v *RingInfo) IsSetMembers() bool {
type _List_HostInfo_ValueList (line 9302) | type _List_HostInfo_ValueList
method ForEach (line 9304) | func (v _List_HostInfo_ValueList) ForEach(f func(wire.Value) error) er...
method Size (line 9321) | func (v _List_HostInfo_ValueList) Size() int {
method ValueType (line 9325) | func (_List_HostInfo_ValueList) ValueType() wire.Type {
method Close (line 9329) | func (_List_HostInfo_ValueList) Close() {}
function _List_HostInfo_Read (line 9382) | func _List_HostInfo_Read(l wire.ValueList) ([]*HostInfo, error) {
function _List_HostInfo_Encode (line 9456) | func _List_HostInfo_Encode(val []*HostInfo, sw stream.Writer) error {
function _List_HostInfo_Decode (line 9525) | func _List_HostInfo_Decode(sr stream.Reader) ([]*HostInfo, error) {
function _List_HostInfo_Equals (line 9642) | func _List_HostInfo_Equals(lhs, rhs []*HostInfo) bool {
type _List_HostInfo_Zapper (line 9680) | type _List_HostInfo_Zapper
method MarshalLogArray (line 9684) | func (l _List_HostInfo_Zapper) MarshalLogArray(enc zapcore.ArrayEncode...
type UpdateDomainAsyncWorkflowConfiguratonRequest (line 9754) | type UpdateDomainAsyncWorkflowConfiguratonRequest struct
method ToWire (line 9774) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) ToWire() (wire....
method FromWire (line 9819) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) FromWire(w wire...
method Encode (line 9852) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) Encode(sw strea...
method Decode (line 9889) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) Decode(sr strea...
method String (line 9940) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) String() string {
method Equals (line 9963) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) Equals(rhs *Upd...
method MarshalLogObject (line 9981) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) MarshalLogObjec...
method GetDomain (line 9996) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) GetDomain() (o ...
method IsSetDomain (line 10005) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) IsSetDomain() b...
method GetConfiguration (line 10011) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) GetConfiguratio...
method IsSetConfiguration (line 10020) | func (v *UpdateDomainAsyncWorkflowConfiguratonRequest) IsSetConfigurat...
type UpdateDomainAsyncWorkflowConfiguratonResponse (line 10024) | type UpdateDomainAsyncWorkflowConfiguratonResponse struct
method ToWire (line 10042) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) ToWire() (wire...
method FromWire (line 10068) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) FromWire(w wir...
method Encode (line 10082) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) Encode(sw stre...
method Decode (line 10095) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) Decode(sr stre...
method String (line 10132) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) String() string {
method Equals (line 10147) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) Equals(rhs *Up...
method MarshalLogObject (line 10159) | func (v *UpdateDomainAsyncWorkflowConfiguratonResponse) MarshalLogObje...
type UpdateDomainIsolationGroupsRequest (line 10166) | type UpdateDomainIsolationGroupsRequest struct
method ToWire (line 10186) | func (v *UpdateDomainIsolationGroupsRequest) ToWire() (wire.Value, err...
method FromWire (line 10231) | func (v *UpdateDomainIsolationGroupsRequest) FromWire(w wire.Value) er...
method Encode (line 10264) | func (v *UpdateDomainIsolationGroupsRequest) Encode(sw stream.Writer) ...
method Decode (line 10301) | func (v *UpdateDomainIsolationGroupsRequest) Decode(sr stream.Reader) ...
method String (line 10352) | func (v *UpdateDomainIsolationGroupsRequest) String() string {
method Equals (line 10375) | func (v *UpdateDomainIsolationGroupsRequest) Equals(rhs *UpdateDomainI...
method MarshalLogObject (line 10393) | func (v *UpdateDomainIsolationGroupsRequest) MarshalLogObject(enc zapc...
method GetDomain (line 10408) | func (v *UpdateDomainIsolationGroupsRequest) GetDomain() (o string) {
method IsSetDomain (line 10417) | func (v *UpdateDomainIsolationGroupsRequest) IsSetDomain() bool {
method GetIsolationGroups (line 10423) | func (v *UpdateDomainIsolationGroupsRequest) GetIsolationGroups() (o *...
method IsSetIsolationGroups (line 10432) | func (v *UpdateDomainIsolationGroupsRequest) IsSetIsolationGroups() bo...
type UpdateDomainIsolationGroupsResponse (line 10436) | type UpdateDomainIsolationGroupsResponse struct
method ToWire (line 10454) | func (v *UpdateDomainIsolationGroupsResponse) ToWire() (wire.Value, er...
method FromWire (line 10480) | func (v *UpdateDomainIsolationGroupsResponse) FromWire(w wire.Value) e...
method Encode (line 10494) | func (v *UpdateDomainIsolationGroupsResponse) Encode(sw stream.Writer)...
method Decode (line 10507) | func (v *UpdateDomainIsolationGroupsResponse) Decode(sr stream.Reader)...
method String (line 10544) | func (v *UpdateDomainIsolationGroupsResponse) String() string {
method Equals (line 10559) | func (v *UpdateDomainIsolationGroupsResponse) Equals(rhs *UpdateDomain...
method MarshalLogObject (line 10571) | func (v *UpdateDomainIsolationGroupsResponse) MarshalLogObject(enc zap...
type UpdateDynamicConfigRequest (line 10578) | type UpdateDynamicConfigRequest struct
method ToWire (line 10627) | func (v *UpdateDynamicConfigRequest) ToWire() (wire.Value, error) {
method FromWire (line 10696) | func (v *UpdateDynamicConfigRequest) FromWire(w wire.Value) error {
method Encode (line 10750) | func (v *UpdateDynamicConfigRequest) Encode(sw stream.Writer) error {
method Decode (line 10823) | func (v *UpdateDynamicConfigRequest) Decode(sr stream.Reader) error {
method String (line 10874) | func (v *UpdateDynamicConfigRequest) String() string {
method Equals (line 10912) | func (v *UpdateDynamicConfigRequest) Equals(rhs *UpdateDynamicConfigRe...
method MarshalLogObject (line 10941) | func (v *UpdateDynamicConfigRequest) MarshalLogObject(enc zapcore.Obje...
method GetConfigName (line 10956) | func (v *UpdateDynamicConfigRequest) GetConfigName() (o string) {
method IsSetConfigName (line 10965) | func (v *UpdateDynamicConfigRequest) IsSetConfigName() bool {
method GetConfigValues (line 10971) | func (v *UpdateDynamicConfigRequest) GetConfigValues() (o []*config.Dy...
method IsSetConfigValues (line 10980) | func (v *UpdateDynamicConfigRequest) IsSetConfigValues() bool {
type _List_DynamicConfigValue_ValueList (line 10583) | type _List_DynamicConfigValue_ValueList
method ForEach (line 10585) | func (v _List_DynamicConfigValue_ValueList) ForEach(f func(wire.Value)...
method Size (line 10602) | func (v _List_DynamicConfigValue_ValueList) Size() int {
method ValueType (line 10606) | func (_List_DynamicConfigValue_ValueList) ValueType() wire.Type {
method Close (line 10610) | func (_List_DynamicConfigValue_ValueList) Close() {}
function _DynamicConfigValue_Read (line 10655) | func _DynamicConfigValue_Read(w wire.Value) (*config.DynamicConfigValue,...
function _List_DynamicConfigValue_Read (line 10661) | func _List_DynamicConfigValue_Read(l wire.ValueList) ([]*config.DynamicC...
function _List_DynamicConfigValue_Encode (line 10725) | func _List_DynamicConfigValue_Encode(val []*config.DynamicConfigValue, s...
function _DynamicConfigValue_Decode (line 10782) | func _DynamicConfigValue_Decode(sr stream.Reader) (*config.DynamicConfig...
function _List_DynamicConfigValue_Decode (line 10788) | func _List_DynamicConfigValue_Decode(sr stream.Reader) ([]*config.Dynami...
function _List_DynamicConfigValue_Equals (line 10893) | func _List_DynamicConfigValue_Equals(lhs, rhs []*config.DynamicConfigVal...
type _List_DynamicConfigValue_Zapper (line 10928) | type _List_DynamicConfigValue_Zapper
method MarshalLogArray (line 10932) | func (l _List_DynamicConfigValue_Zapper) MarshalLogArray(enc zapcore.A...
type UpdateGlobalIsolationGroupsRequest (line 10984) | type UpdateGlobalIsolationGroupsRequest struct
method ToWire (line 11003) | func (v *UpdateGlobalIsolationGroupsRequest) ToWire() (wire.Value, err...
method FromWire (line 11040) | func (v *UpdateGlobalIsolationGroupsRequest) FromWire(w wire.Value) er...
method Encode (line 11063) | func (v *UpdateGlobalIsolationGroupsRequest) Encode(sw stream.Writer) ...
method Decode (line 11088) | func (v *UpdateGlobalIsolationGroupsRequest) Decode(sr stream.Reader) ...
method String (line 11131) | func (v *UpdateGlobalIsolationGroupsRequest) String() string {
method Equals (line 11150) | func (v *UpdateGlobalIsolationGroupsRequest) Equals(rhs *UpdateGlobalI...
method MarshalLogObject (line 11165) | func (v *UpdateGlobalIsolationGroupsRequest) MarshalLogObject(enc zapc...
method GetIsolationGroups (line 11177) | func (v *UpdateGlobalIsolationGroupsRequest) GetIsolationGroups() (o *...
method IsSetIsolationGroups (line 11186) | func (v *UpdateGlobalIsolationGroupsRequest) IsSetIsolationGroups() bo...
type UpdateGlobalIsolationGroupsResponse (line 11190) | type UpdateGlobalIsolationGroupsResponse struct
method ToWire (line 11208) | func (v *UpdateGlobalIsolationGroupsResponse) ToWire() (wire.Value, er...
method FromWire (line 11234) | func (v *UpdateGlobalIsolationGroupsResponse) FromWire(w wire.Value) e...
method Encode (line 11248) | func (v *UpdateGlobalIsolationGroupsResponse) Encode(sw stream.Writer)...
method Decode (line 11261) | func (v *UpdateGlobalIsolationGroupsResponse) Decode(sr stream.Reader)...
method String (line 11298) | func (v *UpdateGlobalIsolationGroupsResponse) String() string {
method Equals (line 11313) | func (v *UpdateGlobalIsolationGroupsResponse) Equals(rhs *UpdateGlobal...
method MarshalLogObject (line 11325) | func (v *UpdateGlobalIsolationGroupsResponse) MarshalLogObject(enc zap...
constant rawIDL (line 11346) | rawIDL = "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permissi...
type AdminService_AddSearchAttribute_Args (line 11351) | type AdminService_AddSearchAttribute_Args struct
method ToWire (line 11370) | func (v *AdminService_AddSearchAttribute_Args) ToWire() (wire.Value, e...
method FromWire (line 11413) | func (v *AdminService_AddSearchAttribute_Args) FromWire(w wire.Value) ...
method Encode (line 11436) | func (v *AdminService_AddSearchAttribute_Args) Encode(sw stream.Writer...
method Decode (line 11467) | func (v *AdminService_AddSearchAttribute_Args) Decode(sr stream.Reader...
method String (line 11510) | func (v *AdminService_AddSearchAttribute_Args) String() string {
method Equals (line 11529) | func (v *AdminService_AddSearchAttribute_Args) Equals(rhs *AdminServic...
method MarshalLogObject (line 11544) | func (v *AdminService_AddSearchAttribute_Args) MarshalLogObject(enc za...
method GetRequest (line 11556) | func (v *AdminService_AddSearchAttribute_Args) GetRequest() (o *AddSea...
method IsSetRequest (line 11565) | func (v *AdminService_AddSearchAttribute_Args) IsSetRequest() bool {
method MethodName (line 11573) | func (v *AdminService_AddSearchAttribute_Args) MethodName() string {
method EnvelopeType (line 11580) | func (v *AdminService_AddSearchAttribute_Args) EnvelopeType() wire.Env...
function _AddSearchAttributeRequest_Read (line 11390) | func _AddSearchAttributeRequest_Read(w wire.Value) (*AddSearchAttributeR...
function _AddSearchAttributeRequest_Decode (line 11456) | func _AddSearchAttributeRequest_Decode(sr stream.Reader) (*AddSearchAttr...
function init (line 11630) | func init() {
type AdminService_AddSearchAttribute_Result (line 11698) | type AdminService_AddSearchAttribute_Result struct
method ToWire (line 11719) | func (v *AdminService_AddSearchAttribute_Result) ToWire() (wire.Value,...
method FromWire (line 11794) | func (v *AdminService_AddSearchAttribute_Result) FromWire(w wire.Value...
method Encode (line 11847) | func (v *AdminService_AddSearchAttribute_Result) Encode(sw stream.Writ...
method Decode (line 11929) | func (v *AdminService_AddSearchAttribute_Result) Decode(sr stream.Read...
method String (line 11998) | func (v *AdminService_AddSearchAttribute_Result) String() string {
method Equals (line 12025) | func (v *AdminService_AddSearchAttribute_Result) Equals(rhs *AdminServ...
method MarshalLogObject (line 12046) | func (v *AdminService_AddSearchAttribute_Result) MarshalLogObject(enc ...
method GetBadRequestError (line 12064) | func (v *AdminService_AddSearchAttribute_Result) GetBadRequestError() ...
method IsSetBadRequestError (line 12073) | func (v *AdminService_AddSearchAttribute_Result) IsSetBadRequestError(...
method GetInternalServiceError (line 12079) | func (v *AdminService_AddSearchAttribute_Result) GetInternalServiceErr...
method IsSetInternalServiceError (line 12088) | func (v *AdminService_AddSearchAttribute_Result) IsSetInternalServiceE...
method GetServiceBusyError (line 12094) | func (v *AdminService_AddSearchAttribute_Result) GetServiceBusyError()...
method IsSetServiceBusyError (line 12103) | func (v *AdminService_AddSearchAttribute_Result) IsSetServiceBusyError...
method MethodName (line 12111) | func (v *AdminService_AddSearchAttribute_Result) MethodName() string {
method EnvelopeType (line 12118) | func (v *AdminService_AddSearchAttribute_Result) EnvelopeType() wire.E...
function _BadRequestError_Read (line 11759) | func _BadRequestError_Read(w wire.Value) (*shared.BadRequestError, error) {
function _InternalServiceError_Read (line 11765) | func _InternalServiceError_Read(w wire.Value) (*shared.InternalServiceEr...
function _ServiceBusyError_Read (line 11771) | func _ServiceBusyError_Read(w wire.Value) (*shared.ServiceBusyError, err...
function _BadRequestError_Decode (line 11906) | func _BadRequestError_Decode(sr stream.Reader) (*shared.BadRequestError,...
function _InternalServiceError_Decode (line 11912) | func _InternalServiceError_Decode(sr stream.Reader) (*shared.InternalSer...
function _ServiceBusyError_Decode (line 11918) | func _ServiceBusyError_Decode(sr stream.Reader) (*shared.ServiceBusyErro...
type AdminService_CloseShard_Args (line 12125) | type AdminService_CloseShard_Args struct
method ToWire (line 12144) | func (v *AdminService_CloseShard_Args) ToWire() (wire.Value, error) {
method FromWire (line 12187) | func (v *AdminService_CloseShard_Args) FromWire(w wire.Value) error {
method Encode (line 12210) | func (v *AdminService_CloseShard_Args) Encode(sw stream.Writer) error {
method Decode (line 12241) | func (v *AdminService_CloseShard_Args) Decode(sr stream.Reader) error {
method String (line 12284) | func (v *AdminService_CloseShard_Args) String() string {
method Equals (line 12303) | func (v *AdminService_CloseShard_Args) Equals(rhs *AdminService_CloseS...
method MarshalLogObject (line 12318) | func (v *AdminService_CloseShard_Args) MarshalLogObject(enc zapcore.Ob...
method GetRequest (line 12330) | func (v *AdminService_CloseShard_Args) GetRequest() (o *shared.CloseSh...
method IsSetRequest (line 12339) | func (v *AdminService_CloseShard_Args) IsSetRequest() bool {
method MethodName (line 12347) | func (v *AdminService_CloseShard_Args) MethodName() string {
method EnvelopeType (line 12354) | func (v *AdminService_CloseShard_Args) EnvelopeType() wire.EnvelopeType {
function _CloseShardRequest_Read (line 12164) | func _CloseShardRequest_Read(w wire.Value) (*shared.CloseShardRequest, e...
function _CloseShardRequest_Decode (line 12230) | func _CloseShardRequest_Decode(sr stream.Reader) (*shared.CloseShardRequ...
function init (line 12404) | func init() {
type AdminService_CloseShard_Result (line 12472) | type AdminService_CloseShard_Result struct
method ToWire (line 12493) | func (v *AdminService_CloseShard_Result) ToWire() (wire.Value, error) {
method FromWire (line 12556) | func (v *AdminService_CloseShard_Result) FromWire(w wire.Value) error {
method Encode (line 12609) | func (v *AdminService_CloseShard_Result) Encode(sw stream.Writer) error {
method Decode (line 12679) | func (v *AdminService_CloseShard_Result) Decode(sr stream.Reader) error {
method String (line 12748) | func (v *AdminService_CloseShard_Result) String() string {
method Equals (line 12775) | func (v *AdminService_CloseShard_Result) Equals(rhs *AdminService_Clos...
method MarshalLogObject (line 12796) | func (v *AdminService_CloseShard_Result) MarshalLogObject(enc zapcore....
method GetBadRequestError (line 12814) | func (v *AdminService_CloseShard_Result) GetBadRequestError() (o *shar...
method IsSetBadRequestError (line 12823) | func (v *AdminService_CloseShard_Result) IsSetBadRequestError() bool {
method GetInternalServiceError (line 12829) | func (v *AdminService_CloseShard_Result) GetInternalServiceError() (o ...
method IsSetInternalServiceError (line 12838) | func (v *AdminService_CloseShard_Result) IsSetInternalServiceError() b...
method GetAccessDeniedError (line 12844) | func (v *AdminService_CloseShard_Result) GetAccessDeniedError() (o *sh...
method IsSetAccessDeniedError (line 12853) | func (v *AdminService_CloseShard_Result) IsSetAccessDeniedError() bool {
method MethodName (line 12861) | func (v *AdminService_CloseShard_Result) MethodName() string {
method EnvelopeType (line 12868) | func (v *AdminService_CloseShard_Result) EnvelopeType() wire.EnvelopeT...
function _AccessDeniedError_Read (line 12533) | func _AccessDeniedError_Read(w wire.Value) (*shared.AccessDeniedError, e...
function _AccessDeniedError_Decode (line 12668) | func _AccessDeniedError_Decode(sr stream.Reader) (*shared.AccessDeniedEr...
type AdminService_DeleteWorkflow_Args (line 12875) | type AdminService_DeleteWorkflow_Args struct
method ToWire (line 12894) | func (v *AdminService_DeleteWorkflow_Args) ToWire() (wire.Value, error) {
method FromWire (line 12937) | func (v *AdminService_DeleteWorkflow_Args) FromWire(w wire.Value) error {
method Encode (line 12960) | func (v *AdminService_DeleteWorkflow_Args) Encode(sw stream.Writer) er...
method Decode (line 12991) | func (v *AdminService_DeleteWorkflow_Args) Decode(sr stream.Reader) er...
method String (line 13034) | func (v *AdminService_DeleteWorkflow_Args) String() string {
method Equals (line 13053) | func (v *AdminService_DeleteWorkflow_Args) Equals(rhs *AdminService_De...
method MarshalLogObject (line 13068) | func (v *AdminService_DeleteWorkflow_Args) MarshalLogObject(enc zapcor...
method GetRequest (line 13080) | func (v *AdminService_DeleteWorkflow_Args) GetRequest() (o *AdminDelet...
method IsSetRequest (line 13089) | func (v *AdminService_DeleteWorkflow_Args) IsSetRequest() bool {
method MethodName (line 13097) | func (v *AdminService_DeleteWorkflow_Args) MethodName() string {
method EnvelopeType (line 13104) | func (v *AdminService_DeleteWorkflow_Args) EnvelopeType() wire.Envelop...
function _AdminDeleteWorkflowRequest_Read (line 12914) | func _AdminDeleteWorkflowRequest_Read(w wire.Value) (*AdminDeleteWorkflo...
function _AdminDeleteWorkflowRequest_Decode (line 12980) | func _AdminDeleteWorkflowRequest_Decode(sr stream.Reader) (*AdminDeleteW...
function init (line 13153) | func init() {
type AdminService_DeleteWorkflow_Result (line 13230) | type AdminService_DeleteWorkflow_Result struct
method ToWire (line 13253) | func (v *AdminService_DeleteWorkflow_Result) ToWire() (wire.Value, err...
method FromWire (line 13330) | func (v *AdminService_DeleteWorkflow_Result) FromWire(w wire.Value) er...
method Encode (line 13394) | func (v *AdminService_DeleteWorkflow_Result) Encode(sw stream.Writer) ...
method Decode (line 13485) | func (v *AdminService_DeleteWorkflow_Result) Decode(sr stream.Reader) ...
method String (line 13563) | func (v *AdminService_DeleteWorkflow_Result) String() string {
method Equals (line 13594) | func (v *AdminService_DeleteWorkflow_Result) Equals(rhs *AdminService_...
method MarshalLogObject (line 13618) | func (v *AdminService_DeleteWorkflow_Result) MarshalLogObject(enc zapc...
method GetSuccess (line 13639) | func (v *AdminService_DeleteWorkflow_Result) GetSuccess() (o *AdminDel...
method IsSetSuccess (line 13648) | func (v *AdminService_DeleteWorkflow_Result) IsSetSuccess() bool {
method GetBadRequestError (line 13654) | func (v *AdminService_DeleteWorkflow_Result) GetBadRequestError() (o *...
method IsSetBadRequestError (line 13663) | func (v *AdminService_DeleteWorkflow_Result) IsSetBadRequestError() bo...
method GetEntityNotExistError (line 13669) | func (v *AdminService_DeleteWorkflow_Result) GetEntityNotExistError() ...
method IsSetEntityNotExistError (line 13678) | func (v *AdminService_DeleteWorkflow_Result) IsSetEntityNotExistError(...
method GetInternalServiceError (line 13684) | func (v *AdminService_DeleteWorkflow_Result) GetInternalServiceError()...
method IsSetInternalServiceError (line 13693) | func (v *AdminService_DeleteWorkflow_Result) IsSetInternalServiceError...
method MethodName (line 13701) | func (v *AdminService_DeleteWorkflow_Result) MethodName() string {
method EnvelopeType (line 13708) | func (v *AdminService_DeleteWorkflow_Result) EnvelopeType() wire.Envel...
function _AdminDeleteWorkflowResponse_Read (line 13301) | func _AdminDeleteWorkflowResponse_Read(w wire.Value) (*AdminDeleteWorkfl...
function _EntityNotExistsError_Read (line 13307) | func _EntityNotExistsError_Read(w wire.Value) (*shared.EntityNotExistsEr...
function _AdminDeleteWorkflowResponse_Decode (line 13468) | func _AdminDeleteWorkflowResponse_Decode(sr stream.Reader) (*AdminDelete...
function _EntityNotExistsError_Decode (line 13474) | func _EntityNotExistsError_Decode(sr stream.Reader) (*shared.EntityNotEx...
type AdminService_DescribeCluster_Args (line 13715) | type AdminService_DescribeCluster_Args struct
method ToWire (line 13733) | func (v *AdminService_DescribeCluster_Args) ToWire() (wire.Value, erro...
method FromWire (line 13759) | func (v *AdminService_DescribeCluster_Args) FromWire(w wire.Value) err...
method Encode (line 13773) | func (v *AdminService_DescribeCluster_Args) Encode(sw stream.Writer) e...
method Decode (line 13786) | func (v *AdminService_DescribeCluster_Args) Decode(sr stream.Reader) e...
method String (line 13823) | func (v *AdminService_DescribeCluster_Args) String() string {
method Equals (line 13838) | func (v *AdminService_DescribeCluster_Args) Equals(rhs *AdminService_D...
method MarshalLogObject (line 13850) | func (v *AdminService_DescribeCluster_Args) MarshalLogObject(enc zapco...
method MethodName (line 13861) | func (v *AdminService_DescribeCluster_Args) MethodName() string {
method EnvelopeType (line 13868) | func (v *AdminService_DescribeCluster_Args) EnvelopeType() wire.Envelo...
function init (line 13915) | func init() {
type AdminService_DescribeCluster_Result (line 13977) | type AdminService_DescribeCluster_Result struct
method ToWire (line 13999) | func (v *AdminService_DescribeCluster_Result) ToWire() (wire.Value, er...
method FromWire (line 14062) | func (v *AdminService_DescribeCluster_Result) FromWire(w wire.Value) e...
method Encode (line 14115) | func (v *AdminService_DescribeCluster_Result) Encode(sw stream.Writer)...
method Decode (line 14185) | func (v *AdminService_DescribeCluster_Result) Decode(sr stream.Reader)...
method String (line 14254) | func (v *AdminService_DescribeCluster_Result) String() string {
method Equals (line 14281) | func (v *AdminService_DescribeCluster_Result) Equals(rhs *AdminService...
method MarshalLogObject (line 14302) | func (v *AdminService_DescribeCluster_Result) MarshalLogObject(enc zap...
method GetSuccess (line 14320) | func (v *AdminService_DescribeCluster_Result) GetSuccess() (o *Describ...
method IsSetSuccess (line 14329) | func (v *AdminService_DescribeCluster_Result) IsSetSuccess() bool {
method GetInternalServiceError (line 14335) | func (v *AdminService_DescribeCluster_Result) GetInternalServiceError(...
method IsSetInternalServiceError (line 14344) | func (v *AdminService_DescribeCluster_Result) IsSetInternalServiceErro...
method GetServiceBusyError (line 14350) | func (v *AdminService_DescribeCluster_Result) GetServiceBusyError() (o...
method IsSetServiceBusyError (line 14359) | func (v *AdminService_DescribeCluster_Result) IsSetServiceBusyError() ...
method MethodName (line 14367) | func (v *AdminService_DescribeCluster_Result) MethodName() string {
method EnvelopeType (line 14374) | func (v *AdminService_DescribeCluster_Result) EnvelopeType() wire.Enve...
function _DescribeClusterResponse_Read (line 14039) | func _DescribeClusterResponse_Read(w wire.Value) (*DescribeClusterRespon...
function _DescribeClusterResponse_Decode (line 14174) | func _DescribeClusterResponse_Decode(sr stream.Reader) (*DescribeCluster...
type AdminService_DescribeHistoryHost_Args (line 14381) | type AdminService_DescribeHistoryHost_Args struct
method ToWire (line 14400) | func (v *AdminService_DescribeHistoryHost_Args) ToWire() (wire.Value, ...
method FromWire (line 14443) | func (v *AdminService_DescribeHistoryHost_Args) FromWire(w wire.Value)...
method Encode (line 14466) | func (v *AdminService_DescribeHistoryHost_Args) Encode(sw stream.Write...
method Decode (line 14497) | func (v *AdminService_DescribeHistoryHost_Args) Decode(sr stream.Reade...
method String (line 14540) | func (v *AdminService_DescribeHistoryHost_Args) String() string {
method Equals (line 14559) | func (v *AdminService_DescribeHistoryHost_Args) Equals(rhs *AdminServi...
method MarshalLogObject (line 14574) | func (v *AdminService_DescribeHistoryHost_Args) MarshalLogObject(enc z...
method GetRequest (line 14586) | func (v *AdminService_DescribeHistoryHost_Args) GetRequest() (o *share...
method IsSetRequest (line 14595) | func (v *AdminService_DescribeHistoryHost_Args) IsSetRequest() bool {
method MethodName (line 14603) | func (v *AdminService_DescribeHistoryHost_Args) MethodName() string {
method EnvelopeType (line 14610) | func (v *AdminService_DescribeHistoryHost_Args) EnvelopeType() wire.En...
function _DescribeHistoryHostRequest_Read (line 14420) | func _DescribeHistoryHostRequest_Read(w wire.Value) (*shared.DescribeHis...
function _DescribeHistoryHostRequest_Decode (line 14486) | func _DescribeHistoryHostRequest_Decode(sr stream.Reader) (*shared.Descr...
function init (line 14659) | func init() {
type AdminService_DescribeHistoryHost_Result (line 14736) | type AdminService_DescribeHistoryHost_Result struct
method ToWire (line 14759) | func (v *AdminService_DescribeHistoryHost_Result) ToWire() (wire.Value...
method FromWire (line 14830) | func (v *AdminService_DescribeHistoryHost_Result) FromWire(w wire.Valu...
method Encode (line 14894) | func (v *AdminService_DescribeHistoryHost_Result) Encode(sw stream.Wri...
method Decode (line 14979) | func (v *AdminService_DescribeHistoryHost_Result) Decode(sr stream.Rea...
method String (line 15057) | func (v *AdminService_DescribeHistoryHost_Result) String() string {
method Equals (line 15088) | func (v *AdminService_DescribeHistoryHost_Result) Equals(rhs *AdminSer...
method MarshalLogObject (line 15112) | func (v *AdminService_DescribeHistoryHost_Result) MarshalLogObject(enc...
method GetSuccess (line 15133) | func (v *AdminService_DescribeHistoryHost_Result) GetSuccess() (o *sha...
method IsSetSuccess (line 15142) | func (v *AdminService_DescribeHistoryHost_Result) IsSetSuccess() bool {
method GetBadRequestError (line 15148) | func (v *AdminService_DescribeHistoryHost_Result) GetBadRequestError()...
method IsSetBadRequestError (line 15157) | func (v *AdminService_DescribeHistoryHost_Result) IsSetBadRequestError...
method GetInternalServiceError (line 15163) | func (v *AdminService_DescribeHistoryHost_Result) GetInternalServiceEr...
method IsSetInternalServiceError (line 15172) | func (v *AdminService_DescribeHistoryHost_Result) IsSetInternalService...
method GetAccessDeniedError (line 15178) | func (v *AdminService_DescribeHistoryHost_Result) GetAccessDeniedError...
method IsSetAccessDeniedError (line 15187) | func (v *AdminService_DescribeHistoryHost_Result) IsSetAccessDeniedErr...
method MethodName (line 15195) | func (v *AdminService_DescribeHistoryHost_Result) MethodName() string {
method EnvelopeType (line 15202) | func (v *AdminService_DescribeHistoryHost_Result) EnvelopeType() wire....
function _DescribeHistoryHostResponse_Read (line 14807) | func _DescribeHistoryHostResponse_Read(w wire.Value) (*shared.DescribeHi...
function _DescribeHistoryHostResponse_Decode (line 14968) | func _DescribeHistoryHostResponse_Decode(sr stream.Reader) (*shared.Desc...
type AdminService_DescribeQueue_Args (line 15209) | type AdminService_DescribeQueue_Args struct
method ToWire (line 15228) | func (v *AdminService_DescribeQueue_Args) ToWire() (wire.Value, error) {
method FromWire (line 15271) | func (v *AdminService_DescribeQueue_Args) FromWire(w wire.Value) error {
method Encode (line 15294) | func (v *AdminService_DescribeQueue_Args) Encode(sw stream.Writer) err...
method Decode (line 15325) | func (v *AdminService_DescribeQueue_Args) Decode(sr stream.Reader) err...
method String (line 15368) | func (v *AdminService_DescribeQueue_Args) String() string {
method Equals (line 15387) | func (v *AdminService_DescribeQueue_Args) Equals(rhs *AdminService_Des...
method MarshalLogObject (line 15402) | func (v *AdminService_DescribeQueue_Args) MarshalLogObject(enc zapcore...
method GetRequest (line 15414) | func (v *AdminService_DescribeQueue_Args) GetRequest() (o *shared.Desc...
method IsSetRequest (line 15423) | func (v *AdminService_DescribeQueue_Args) IsSetRequest() bool {
method MethodName (line 15431) | func (v *AdminService_DescribeQueue_Args) MethodName() string {
method EnvelopeType (line 15438) | func (v *AdminService_DescribeQueue_Args) EnvelopeType() wire.Envelope...
function _DescribeQueueRequest_Read (line 15248) | func _DescribeQueueRequest_Read(w wire.Value) (*shared.DescribeQueueRequ...
function _DescribeQueueRequest_Decode (line 15314) | func _DescribeQueueRequest_Decode(sr stream.Reader) (*shared.DescribeQue...
function init (line 15487) | func init() {
type AdminService_DescribeQueue_Result (line 15564) | type AdminService_DescribeQueue_Result struct
method ToWire (line 15587) | func (v *AdminService_DescribeQueue_Result) ToWire() (wire.Value, erro...
method FromWire (line 15658) | func (v *AdminService_DescribeQueue_Result) FromWire(w wire.Value) err...
method Encode (line 15722) | func (v *AdminService_DescribeQueue_Result) Encode(sw stream.Writer) e...
method Decode (line 15807) | func (v *AdminService_DescribeQueue_Result) Decode(sr stream.Reader) e...
method String (line 15885) | func (v *AdminService_DescribeQueue_Result) String() string {
method Equals (line 15916) | func (v *AdminService_DescribeQueue_Result) Equals(rhs *AdminService_D...
method MarshalLogObject (line 15940) | func (v *AdminService_DescribeQueue_Result) MarshalLogObject(enc zapco...
method GetSuccess (line 15961) | func (v *AdminService_DescribeQueue_Result) GetSuccess() (o *shared.De...
method IsSetSuccess (line 15970) | func (v *AdminService_DescribeQueue_Result) IsSetSuccess() bool {
method GetBadRequestError (line 15976) | func (v *AdminService_DescribeQueue_Result) GetBadRequestError() (o *s...
method IsSetBadRequestError (line 15985) | func (v *AdminService_DescribeQueue_Result) IsSetBadRequestError() bool {
method GetInternalServiceError (line 15991) | func (v *AdminService_DescribeQueue_Result) GetInternalServiceError() ...
method IsSetInternalServiceError (line 16000) | func (v *AdminService_DescribeQueue_Result) IsSetInternalServiceError(...
method GetAccessDeniedError (line 16006) | func (v *AdminService_DescribeQueue_Result) GetAccessDeniedError() (o ...
method IsSetAccessDeniedError (line 16015) | func (v *AdminService_DescribeQueue_Result) IsSetAccessDeniedError() b...
method MethodName (line 16023) | func (v *AdminService_DescribeQueue_Result) MethodName() string {
method EnvelopeType (line 16030) | func (v *AdminService_DescribeQueue_Result) EnvelopeType() wire.Envelo...
function _DescribeQueueResponse_Read (line 15635) | func _DescribeQueueResponse_Read(w wire.Value) (*shared.DescribeQueueRes...
function _DescribeQueueResponse_Decode (line 15796) | func _DescribeQueueResponse_Decode(sr stream.Reader) (*shared.DescribeQu...
type AdminService_DescribeShardDistribution_Args (line 16037) | type AdminService_DescribeShardDistribution_Args struct
method ToWire (line 16056) | func (v *AdminService_DescribeShardDistribution_Args) ToWire() (wire.V...
method FromWire (line 16099) | func (v *AdminService_DescribeShardDistribution_Args) FromWire(w wire....
method Encode (line 16122) | func (v *AdminService_DescribeShardDistribution_Args) Encode(sw stream...
method Decode (line 16153) | func (v *AdminService_DescribeShardDistribution_Args) Decode(sr stream...
method String (line 16196) | func (v *AdminService_DescribeShardDistribution_Args) String() string {
method Equals (line 16215) | func (v *AdminService_DescribeShardDistribution_Args) Equals(rhs *Admi...
method MarshalLogObject (line 16230) | func (v *AdminService_DescribeShardDistribution_Args) MarshalLogObject...
method GetRequest (line 16242) | func (v *AdminService_DescribeShardDistribution_Args) GetRequest() (o ...
method IsSetRequest (line 16251) | func (v *AdminService_DescribeShardDistribution_Args) IsSetRequest() b...
method MethodName (line 16259) | func (v *AdminService_DescribeShardDistribution_Args) MethodName() str...
method EnvelopeType (line 16266) | func (v *AdminService_DescribeShardDistribution_Args) EnvelopeType() w...
function _DescribeShardDistributionRequest_Read (line 16076) | func _DescribeShardDistributionRequest_Read(w wire.Value) (*shared.Descr...
function _DescribeShardDistributionRequest_Decode (line 16142) | func _DescribeShardDistributionRequest_Decode(sr stream.Reader) (*shared...
function init (line 16315) | func init() {
type AdminService_DescribeShardDistribution_Result (line 16370) | type AdminService_DescribeShardDistribution_Result struct
method ToWire (line 16391) | func (v *AdminService_DescribeShardDistribution_Result) ToWire() (wire...
method FromWire (line 16446) | func (v *AdminService_DescribeShardDistribution_Result) FromWire(w wir...
method Encode (line 16488) | func (v *AdminService_DescribeShardDistribution_Result) Encode(sw stre...
method Decode (line 16543) | func (v *AdminService_DescribeShardDistribution_Result) Decode(sr stre...
method String (line 16603) | func (v *AdminService_DescribeShardDistribution_Result) String() string {
method Equals (line 16626) | func (v *AdminService_DescribeShardDistribution_Result) Equals(rhs *Ad...
method MarshalLogObject (line 16644) | func (v *AdminService_DescribeShardDistribution_Result) MarshalLogObje...
method GetSuccess (line 16659) | func (v *AdminService_DescribeShardDistribution_Result) GetSuccess() (...
method IsSetSuccess (line 16668) | func (v *AdminService_DescribeShardDistribution_Result) IsSetSuccess()...
method GetInternalServiceError (line 16674) | func (v *AdminService_DescribeShardDistribution_Result) GetInternalSer...
method IsSetInternalServiceError (line 16683) | func (v *AdminService_DescribeShardDistribution_Result) IsSetInternalS...
method MethodName (line 16691) | func (v *AdminService_DescribeShardDistribution_Result) MethodName() s...
method EnvelopeType (line 16698) | func (v *AdminService_DescribeShardDistribution_Result) EnvelopeType()...
function _DescribeShardDistributionResponse_Read (line 16423) | func _DescribeShardDistributionResponse_Read(w wire.Value) (*shared.Desc...
function _DescribeShardDistributionResponse_Decode (line 16532) | func _DescribeShardDistributionResponse_Decode(sr stream.Reader) (*share...
type AdminService_DescribeWorkflowExecution_Args (line 16705) | type AdminService_DescribeWorkflowExecution_Args struct
method ToWire (line 16724) | func (v *AdminService_DescribeWorkflowExecution_Args) ToWire() (wire.V...
method FromWire (line 16767) | func (v *AdminService_DescribeWorkflowExecution_Args) FromWire(w wire....
method Encode (line 16790) | func (v *AdminService_DescribeWorkflowExecution_Args) Encode(sw stream...
method Decode (line 16821) | func (v *AdminService_DescribeWorkflowExecution_Args) Decode(sr stream...
method String (line 16864) | func (v *AdminService_DescribeWorkflowExecution_Args) String() string {
method Equals (line 16883) | func (v *AdminService_DescribeWorkflowExecution_Args) Equals(rhs *Admi...
method MarshalLogObject (line 16898) | func (v *AdminService_DescribeWorkflowExecution_Args) MarshalLogObject...
method GetRequest (line 16910) | func (v *AdminService_DescribeWorkflowExecution_Args) GetRequest() (o ...
method IsSetRequest (line 16919) | func (v *AdminService_DescribeWorkflowExecution_Args) IsSetRequest() b...
method MethodName (line 16927) | func (v *AdminService_DescribeWorkflowExecution_Args) MethodName() str...
method EnvelopeType (line 16934) | func (v *AdminService_DescribeWorkflowExecution_Args) EnvelopeType() w...
function _DescribeWorkflowExecutionRequest_Read (line 16744) | func _DescribeWorkflowExecutionRequest_Read(w wire.Value) (*DescribeWork...
function _DescribeWorkflowExecutionRequest_Decode (line 16810) | func _DescribeWorkflowExecutionRequest_Decode(sr stream.Reader) (*Descri...
function init (line 16983) | func init() {
type AdminService_DescribeWorkflowExecution_Result (line 17071) | type AdminService_DescribeWorkflowExecution_Result struct
method ToWire (line 17095) | func (v *AdminService_DescribeWorkflowExecution_Result) ToWire() (wire...
method FromWire (line 17174) | func (v *AdminService_DescribeWorkflowExecution_Result) FromWire(w wir...
method Encode (line 17249) | func (v *AdminService_DescribeWorkflowExecution_Result) Encode(sw stre...
method Decode (line 17349) | func (v *AdminService_DescribeWorkflowExecution_Result) Decode(sr stre...
method String (line 17436) | func (v *AdminService_DescribeWorkflowExecution_Result) String() string {
method Equals (line 17471) | func (v *AdminService_DescribeWorkflowExecution_Result) Equals(rhs *Ad...
method MarshalLogObject (line 17498) | func (v *AdminService_DescribeWorkflowExecution_Result) MarshalLogObje...
method GetSuccess (line 17522) | func (v *AdminService_DescribeWorkflowExecution_Result) GetSuccess() (...
method IsSetSuccess (line 17531) | func (v *AdminService_DescribeWorkflowExecution_Result) IsSetSuccess()...
method GetBadRequestError (line 17537) | func (v *AdminService_DescribeWorkflowExecution_Result) GetBadRequestE...
method IsSetBadRequestError (line 17546) | func (v *AdminService_DescribeWorkflowExecution_Result) IsSetBadReques...
method GetInternalServiceError (line 17552) | func (v *AdminService_DescribeWorkflowExecution_Result) GetInternalSer...
method IsSetInternalServiceError (line 17561) | func (v *AdminService_DescribeWorkflowExecution_Result) IsSetInternalS...
method GetEntityNotExistError (line 17567) | func (v *AdminService_DescribeWorkflowExecution_Result) GetEntityNotEx...
method IsSetEntityNotExistError (line 17576) | func (v *AdminService_DescribeWorkflowExecution_Result) IsSetEntityNot...
method GetAccessDeniedError (line 17582) | func (v *AdminService_DescribeWorkflowExecution_Result) GetAccessDenie...
method IsSetAccessDeniedError (line 17591) | func (v *AdminService_DescribeWorkflowExecution_Result) IsSetAccessDen...
method MethodName (line 17599) | func (v *AdminService_DescribeWorkflowExecution_Result) MethodName() s...
method EnvelopeType (line 17606) | func (v *AdminService_DescribeWorkflowExecution_Result) EnvelopeType()...
function _DescribeWorkflowExecutionResponse_Read (line 17151) | func _DescribeWorkflowExecutionResponse_Read(w wire.Value) (*DescribeWor...
function _DescribeWorkflowExecutionResponse_Decode (line 17338) | func _DescribeWorkflowExecutionResponse_Decode(sr stream.Reader) (*Descr...
type AdminService_GetCrossClusterTasks_Args (line 17613) | type AdminService_GetCrossClusterTasks_Args struct
method ToWire (line 17632) | func (v *AdminService_GetCrossClusterTasks_Args) ToWire() (wire.Value,...
method FromWire (line 17675) | func (v *AdminService_GetCrossClusterTasks_Args) FromWire(w wire.Value...
method Encode (line 17698) | func (v *AdminService_GetCrossClusterTasks_Args) Encode(sw stream.Writ...
method Decode (line 17729) | func (v *AdminService_GetCrossClusterTasks_Args) Decode(sr stream.Read...
method String (line 17772) | func (v *AdminService_GetCrossClusterTasks_Args) String() string {
method Equals (line 17791) | func (v *AdminService_GetCrossClusterTasks_Args) Equals(rhs *AdminServ...
method MarshalLogObject (line 17806) | func (v *AdminService_GetCrossClusterTasks_Args) MarshalLogObject(enc ...
method GetRequest (line 17818) | func (v *AdminService_GetCrossClusterTasks_Args) GetRequest() (o *shar...
method IsSetRequest (line 17827) | func (v *AdminService_GetCrossClusterTasks_Args) IsSetRequest() bool {
method MethodName (line 17835) | func (v *AdminService_GetCrossClusterTasks_Args) MethodName() string {
method EnvelopeType (line 17842) | func (v *AdminService_GetCrossClusterTasks_Args) EnvelopeType() wire.E...
function _GetCrossClusterTasksRequest_Read (line 17652) | func _GetCrossClusterTasksRequest_Read(w wire.Value) (*shared.GetCrossCl...
function _GetCrossClusterTasksRequest_Decode (line 17718) | func _GetCrossClusterTasksRequest_Decode(sr stream.Reader) (*shared.GetC...
function init (line 17891) | func init() {
type AdminService_GetCrossClusterTasks_Result (line 17968) | type AdminService_GetCrossClusterTasks_Result struct
method ToWire (line 17991) | func (v *AdminService_GetCrossClusterTasks_Result) ToWire() (wire.Valu...
method FromWire (line 18062) | func (v *AdminService_GetCrossClusterTasks_Result) FromWire(w wire.Val...
method Encode (line 18126) | func (v *AdminService_GetCrossClusterTasks_Result) Encode(sw stream.Wr...
method Decode (line 18211) | func (v *AdminService_GetCrossClusterTasks_Result) Decode(sr stream.Re...
method String (line 18289) | func (v *AdminService_GetCrossClusterTasks_Result) String() string {
method Equals (line 18320) | func (v *AdminService_GetCrossClusterTasks_Result) Equals(rhs *AdminSe...
method MarshalLogObject (line 18344) | func (v *AdminService_GetCrossClusterTasks_Result) MarshalLogObject(en...
method GetSuccess (line 18365) | func (v *AdminService_GetCrossClusterTasks_Result) GetSuccess() (o *sh...
method IsSetSuccess (line 18374) | func (v *AdminService_GetCrossClusterTasks_Result) IsSetSuccess() bool {
method GetBadRequestError (line 18380) | func (v *AdminService_GetCrossClusterTasks_Result) GetBadRequestError(...
method IsSetBadRequestError (line 18389) | func (v *AdminService_GetCrossClusterTasks_Result) IsSetBadRequestErro...
method GetInternalServiceError (line 18395) | func (v *AdminService_GetCrossClusterTasks_Result) GetInternalServiceE...
method IsSetInternalServiceError (line 18404) | func (v *AdminService_GetCrossClusterTasks_Result) IsSetInternalServic...
method GetServiceBusyError (line 18410) | func (v *AdminService_GetCrossClusterTasks_Result) GetServiceBusyError...
method IsSetServiceBusyError (line 18419) | func (v *AdminService_GetCrossClusterTasks_Result) IsSetServiceBusyErr...
method MethodName (line 18427) | func (v *AdminService_GetCrossClusterTasks_Result) MethodName() string {
method EnvelopeType (line 18434) | func (v *AdminService_GetCrossClusterTasks_Result) EnvelopeType() wire...
function _GetCrossClusterTasksResponse_Read (line 18039) | func _GetCrossClusterTasksResponse_Read(w wire.Value) (*shared.GetCrossC...
function _GetCrossClusterTasksResponse_Decode (line 18200) | func _GetCrossClusterTasksResponse_Decode(sr stream.Reader) (*shared.Get...
type AdminService_GetDLQReplicationMessages_Args (line 18441) | type AdminService_GetDLQReplicationMessages_Args struct
method ToWire (line 18460) | func (v *AdminService_GetDLQReplicationMessages_Args) ToWire() (wire.V...
method FromWire (line 18503) | func (v *AdminService_GetDLQReplicationMessages_Args) FromWire(w wire....
method Encode (line 18526) | func (v *AdminService_GetDLQReplicationMessages_Args) Encode(sw stream...
method Decode (line 18557) | func (v *AdminService_GetDLQReplicationMessages_Args) Decode(sr stream...
method String (line 18600) | func (v *AdminService_GetDLQReplicationMessages_Args) String() string {
method Equals (line 18619) | func (v *AdminService_GetDLQReplicationMessages_Args) Equals(rhs *Admi...
method MarshalLogObject (line 18634) | func (v *AdminService_GetDLQReplicationMessages_Args) MarshalLogObject...
method GetRequest (line 18646) | func (v *AdminService_GetDLQReplicationMessages_Args) GetRequest() (o ...
method IsSetRequest (line 18655) | func (v *AdminService_GetDLQReplicationMessages_Args) IsSetRequest() b...
method MethodName (line 18663) | func (v *AdminService_GetDLQReplicationMessages_Args) MethodName() str...
method EnvelopeType (line 18670) | func (v *AdminService_GetDLQReplicationMessages_Args) EnvelopeType() w...
function _GetDLQReplicationMessagesRequest_Read (line 18480) | func _GetDLQReplicationMessagesRequest_Read(w wire.Value) (*replicator.G...
function _GetDLQReplicationMessagesRequest_Decode (line 18546) | func _GetDLQReplicationMessagesRequest_Decode(sr stream.Reader) (*replic...
function init (line 18719) | func init() {
type AdminService_GetDLQReplicationMessages_Result (line 18785) | type AdminService_GetDLQReplicationMessages_Result struct
method ToWire (line 18807) | func (v *AdminService_GetDLQReplicationMessages_Result) ToWire() (wire...
method FromWire (line 18870) | func (v *AdminService_GetDLQReplicationMessages_Result) FromWire(w wir...
method Encode (line 18923) | func (v *AdminService_GetDLQReplicationMessages_Result) Encode(sw stre...
method Decode (line 18993) | func (v *AdminService_GetDLQReplicationMessages_Result) Decode(sr stre...
method String (line 19062) | func (v *AdminService_GetDLQReplicationMessages_Result) String() string {
method Equals (line 19089) | func (v *AdminService_GetDLQReplicationMessages_Result) Equals(rhs *Ad...
method MarshalLogObject (line 19110) | func (v *AdminService_GetDLQReplicationMessages_Result) MarshalLogObje...
method GetSuccess (line 19128) | func (v *AdminService_GetDLQReplicationMessages_Result) GetSuccess() (...
method IsSetSuccess (line 19137) | func (v *AdminService_GetDLQReplicationMessages_Result) IsSetSuccess()...
method GetBadRequestError (line 19143) | func (v *AdminService_GetDLQReplicationMessages_Result) GetBadRequestE...
method IsSetBadRequestError (line 19152) | func (v *AdminService_GetDLQReplicationMessages_Result) IsSetBadReques...
method GetServiceBusyError (line 19158) | func (v *AdminService_GetDLQReplicationMessages_Result) GetServiceBusy...
method IsSetServiceBusyError (line 19167) | func (v *AdminService_GetDLQReplicationMessages_Result) IsSetServiceBu...
method MethodName (line 19175) | func (v *AdminService_GetDLQReplicationMessages_Result) MethodName() s...
method EnvelopeType (line 19182) | func (v *AdminService_GetDLQReplicationMessages_Result) EnvelopeType()...
function _GetDLQReplicationMessagesResponse_Read (line 18847) | func _GetDLQReplicationMessagesResponse_Read(w wire.Value) (*replicator....
function _GetDLQReplicationMessagesResponse_Decode (line 18982) | func _GetDLQReplicationMessagesResponse_Decode(sr stream.Reader) (*repli...
type AdminService_GetDomainAsyncWorkflowConfiguraton_Args (line 19189) | type AdminService_GetDomainAsyncWorkflowConfiguraton_Args struct
method ToWire (line 19208) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) ToWire(...
method FromWire (line 19251) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) FromWir...
method Encode (line 19274) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) Encode(...
method Decode (line 19305) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) Decode(...
method String (line 19348) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) String(...
method Equals (line 19367) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) Equals(...
method MarshalLogObject (line 19382) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) Marshal...
method GetRequest (line 19394) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) GetRequ...
method IsSetRequest (line 19403) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) IsSetRe...
method MethodName (line 19411) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) MethodN...
method EnvelopeType (line 19418) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Args) Envelop...
function _GetDomainAsyncWorkflowConfiguratonRequest_Read (line 19228) | func _GetDomainAsyncWorkflowConfiguratonRequest_Read(w wire.Value) (*Get...
function _GetDomainAsyncWorkflowConfiguratonRequest_Decode (line 19294) | func _GetDomainAsyncWorkflowConfiguratonRequest_Decode(sr stream.Reader)...
function init (line 19467) | func init() {
type AdminService_GetDomainAsyncWorkflowConfiguraton_Result (line 19522) | type AdminService_GetDomainAsyncWorkflowConfiguraton_Result struct
method ToWire (line 19543) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) ToWir...
method FromWire (line 19598) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) FromW...
method Encode (line 19640) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Encod...
method Decode (line 19695) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Decod...
method String (line 19755) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Strin...
method Equals (line 19778) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Equal...
method MarshalLogObject (line 19796) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Marsh...
method GetSuccess (line 19811) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) GetSu...
method IsSetSuccess (line 19820) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) IsSet...
method GetBadRequestError (line 19826) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) GetBa...
method IsSetBadRequestError (line 19835) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) IsSet...
method MethodName (line 19843) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Metho...
method EnvelopeType (line 19850) | func (v *AdminService_GetDomainAsyncWorkflowConfiguraton_Result) Envel...
function _GetDomainAsyncWorkflowConfiguratonResponse_Read (line 19575) | func _GetDomainAsyncWorkflowConfiguratonResponse_Read(w wire.Value) (*Ge...
function _GetDomainAsyncWorkflowConfiguratonResponse_Decode (line 19684) | func _GetDomainAsyncWorkflowConfiguratonResponse_Decode(sr stream.Reader...
type AdminService_GetDomainIsolationGroups_Args (line 19857) | type AdminService_GetDomainIsolationGroups_Args struct
method ToWire (line 19876) | func (v *AdminService_GetDomainIsolationGroups_Args) ToWire() (wire.Va...
method FromWire (line 19919) | func (v *AdminService_GetDomainIsolationGroups_Args) FromWire(w wire.V...
method Encode (line 19942) | func (v *AdminService_GetDomainIsolationGroups_Args) Encode(sw stream....
method Decode (line 19973) | func (v *AdminService_GetDomainIsolationGroups_Args) Decode(sr stream....
method String (line 20016) | func (v *AdminService_GetDomainIsolationGroups_Args) String() string {
method Equals (line 20035) | func (v *AdminService_GetDomainIsolationGroups_Args) Equals(rhs *Admin...
method MarshalLogObject (line 20050) | func (v *AdminService_GetDomainIsolationGroups_Args) MarshalLogObject(...
method GetRequest (line 20062) | func (v *AdminService_GetDomainIsolationGroups_Args) GetRequest() (o *...
method IsSetRequest (line 20071) | func (v *AdminService_GetDomainIsolationGroups_Args) IsSetRequest() bo...
method MethodName (line 20079) | func (v *AdminService_GetDomainIsolationGroups_Args) MethodName() stri...
method EnvelopeType (line 20086) | func (v *AdminService_GetDomainIsolationGroups_Args) EnvelopeType() wi...
function _GetDomainIsolationGroupsRequest_Read (line 19896) | func _GetDomainIsolationGroupsRequest_Read(w wire.Value) (*GetDomainIsol...
function _GetDomainIsolationGroupsRequest_Decode (line 19962) | func _GetDomainIsolationGroupsRequest_Decode(sr stream.Reader) (*GetDoma...
function init (line 20135) | func init() {
type AdminService_GetDomainIsolationGroups_Result (line 20190) | type AdminService_GetDomainIsolationGroups_Result struct
method ToWire (line 20211) | func (v *AdminService_GetDomainIsolationGroups_Result) ToWire() (wire....
method FromWire (line 20266) | func (v *AdminService_GetDomainIsolationGroups_Result) FromWire(w wire...
method Encode (line 20308) | func (v *AdminService_GetDomainIsolationGroups_Result) Encode(sw strea...
method Decode (line 20363) | func (v *AdminService_GetDomainIsolationGroups_Result) Decode(sr strea...
method String (line 20423) | func (v *AdminService_GetDomainIsolationGroups_Result) String() string {
method Equals (line 20446) | func (v *AdminService_GetDomainIsolationGroups_Result) Equals(rhs *Adm...
method MarshalLogObject (line 20464) | func (v *AdminService_GetDomainIsolationGroups_Result) MarshalLogObjec...
method GetSuccess (line 20479) | func (v *AdminService_GetDomainIsolationGroups_Result) GetSuccess() (o...
method IsSetSuccess (line 20488) | func (v *AdminService_GetDomainIsolationGroups_Result) IsSetSuccess() ...
method GetBadRequestError (line 20494) | func (v *AdminService_GetDomainIsolationGroups_Result) GetBadRequestEr...
method IsSetBadRequestError (line 20503) | func (v *AdminService_GetDomainIsolationGroups_Result) IsSetBadRequest...
method MethodName (line 20511) | func (v *AdminService_GetDomainIsolationGroups_Result) MethodName() st...
method EnvelopeType (line 20518) | func (v *AdminService_GetDomainIsolationGroups_Result) EnvelopeType() ...
function _GetDomainIsolationGroupsResponse_Read (line 20243) | func _GetDomainIsolationGroupsResponse_Read(w wire.Value) (*GetDomainIso...
function _GetDomainIsolationGroupsResponse_Decode (line 20352) | func _GetDomainIsolationGroupsResponse_Decode(sr stream.Reader) (*GetDom...
type AdminService_GetDomainReplicationMessages_Args (line 20525) | type AdminService_GetDomainReplicationMessages_Args struct
method ToWire (line 20544) | func (v *AdminService_GetDomainReplicationMessages_Args) ToWire() (wir...
method FromWire (line 20587) | func (v *AdminService_GetDomainReplicationMessages_Args) FromWire(w wi...
method Encode (line 20610) | func (v *AdminService_GetDomainReplicationMessages_Args) Encode(sw str...
method Decode (line 20641) | func (v *AdminService_GetDomainReplicationMessages_Args) Decode(sr str...
method String (line 20684) | func (v *AdminService_GetDomainReplicationMessages_Args) String() stri...
method Equals (line 20703) | func (v *AdminService_GetDomainReplicationMessages_Args) Equals(rhs *A...
method MarshalLogObject (line 20718) | func (v *AdminService_GetDomainReplicationMessages_Args) MarshalLogObj...
method GetRequest (line 20730) | func (v *AdminService_GetDomainReplicationMessages_Args) GetRequest() ...
method IsSetRequest (line 20739) | func (v *AdminService_GetDomainReplicationMessages_Args) IsSetRequest(...
method MethodName (line 20747) | func (v *AdminService_GetDomainReplicationMessages_Args) MethodName() ...
method EnvelopeType (line 20754) | func (v *AdminService_GetDomainReplicationMessages_Args) EnvelopeType(...
function _GetDomainReplicationMessagesRequest_Read (line 20564) | func _GetDomainReplicationMessagesRequest_Read(w wire.Value) (*replicato...
function _GetDomainReplicationMessagesRequest_Decode (line 20630) | func _GetDomainReplicationMessagesRequest_Decode(sr stream.Reader) (*rep...
function init (line 20803) | func init() {
type AdminService_GetDomainReplicationMessages_Result (line 20891) | type AdminService_GetDomainReplicationMessages_Result struct
method ToWire (line 20915) | func (v *AdminService_GetDomainReplicationMessages_Result) ToWire() (w...
method FromWire (line 21006) | func (v *AdminService_GetDomainReplicationMessages_Result) FromWire(w ...
method Encode (line 21081) | func (v *AdminService_GetDomainReplicationMessages_Result) Encode(sw s...
method Decode (line 21193) | func (v *AdminService_GetDomainReplicationMessages_Result) Decode(sr s...
method String (line 21280) | func (v *AdminService_GetDomainReplicationMessages_Result) String() st...
method Equals (line 21315) | func (v *AdminService_GetDomainReplicationMessages_Result) Equals(rhs ...
method MarshalLogObject (line 21342) | func (v *AdminService_GetDomainReplicationMessages_Result) MarshalLogO...
method GetSuccess (line 21366) | func (v *AdminService_GetDomainReplicationMessages_Result) GetSuccess(...
method IsSetSuccess (line 21375) | func (v *AdminService_GetDomainReplicationMessages_Result) IsSetSucces...
method GetBadRequestError (line 21381) | func (v *AdminService_GetDomainReplicationMessages_Result) GetBadReque...
method IsSetBadRequestError (line 21390) | func (v *AdminService_GetDomainReplicationMessages_Result) IsSetBadReq...
method GetLimitExceededError (line 21396) | func (v *AdminService_GetDomainReplicationMessages_Result) GetLimitExc...
method IsSetLimitExceededError (line 21405) | func (v *AdminService_GetDomainReplicationMessages_Result) IsSetLimitE...
method GetServiceBusyError (line 21411) | func (v *AdminService_GetDomainReplicationMessages_Result) GetServiceB...
method IsSetServiceBusyError (line 21420) | func (v *AdminService_GetDomainReplicationMessages_Result) IsSetServic...
method GetClientVersionNotSupportedError (line 21426) | func (v *AdminService_GetDomainReplicationMessages_Result) GetClientVe...
method IsSetClientVersionNotSupportedError (line 21435) | func (v *AdminService_GetDomainReplicationMessages_Result) IsSetClient...
method MethodName (line 21443) | func (v *AdminService_GetDomainReplicationMessages_Result) MethodName(...
method EnvelopeType (line 21450) | func (v *AdminService_GetDomainReplicationMessages_Result) EnvelopeTyp...
function _GetDomainReplicationMessagesResponse_Read (line 20971) | func _GetDomainReplicationMessagesResponse_Read(w wire.Value) (*replicat...
function _LimitExceededError_Read (line 20977) | func _LimitExceededError_Read(w wire.Value) (*shared.LimitExceededError,...
function _ClientVersionNotSupportedError_Read (line 20983) | func _ClientVersionNotSupportedError_Read(w wire.Value) (*shared.ClientV...
function _GetDomainReplicationMessagesResponse_Decode (line 21170) | func _GetDomainReplicationMessagesResponse_Decode(sr stream.Reader) (*re...
function _LimitExceededError_Decode (line 21176) | func _LimitExceededError_Decode(sr stream.Reader) (*shared.LimitExceeded...
function _ClientVersionNotSupportedError_Decode (line 21182) | func _ClientVersionNotSupportedError_Decode(sr stream.Reader) (*shared.C...
type AdminService_GetDynamicConfig_Args (line 21457) | type AdminService_GetDynamicConfig_Args struct
method ToWire (line 21476) | func (v *AdminService_GetDynamicConfig_Args) ToWire() (wire.Value, err...
method FromWire (line 21519) | func (v *AdminService_GetDynamicConfig_Args) FromWire(w wire.Value) er...
method Encode (line 21542) | func (v *AdminService_GetDynamicConfig_Args) Encode(sw stream.Writer) ...
method Decode (line 21573) | func (v *AdminService_GetDynamicConfig_Args) Decode(sr stream.Reader) ...
method String (line 21616) | func (v *AdminService_GetDynamicConfig_Args) String() string {
method Equals (line 21635) | func (v *AdminService_GetDynamicConfig_Args) Equals(rhs *AdminService_...
method MarshalLogObject (line 21650) | func (v *AdminService_GetDynamicConfig_Args) MarshalLogObject(enc zapc...
method GetRequest (line 21662) | func (v *AdminService_GetDynamicConfig_Args) GetRequest() (o *GetDynam...
method IsSetRequest (line 21671) | func (v *AdminService_GetDynamicConfig_Args) IsSetRequest() bool {
method MethodName (line 21679) | func (v *AdminService_GetDynamicConfig_Args) MethodName() string {
method EnvelopeType (line 21686) | func (v *AdminService_GetDynamicConfig_Args) EnvelopeType() wire.Envel...
function _GetDynamicConfigRequest_Read (line 21496) | func _GetDynamicConfigRequest_Read(w wire.Value) (*GetDynamicConfigReque...
function _GetDynamicConfigRequest_Decode (line 21562) | func _GetDynamicConfigRequest_Decode(sr stream.Reader) (*GetDynamicConfi...
function init (line 21735) | func init() {
type AdminService_GetDynamicConfig_Result (line 21801) | type AdminService_GetDynamicConfig_Result struct
method ToWire (line 21823) | func (v *AdminService_GetDynamicConfig_Result) ToWire() (wire.Value, e...
method FromWire (line 21886) | func (v *AdminService_GetDynamicConfig_Result) FromWire(w wire.Value) ...
method Encode (line 21939) | func (v *AdminService_GetDynamicConfig_Result) Encode(sw stream.Writer...
method Decode (line 22009) | func (v *AdminService_GetDynamicConfig_Result) Decode(sr stream.Reader...
method String (line 22078) | func (v *AdminService_GetDynamicConfig_Result) String() string {
method Equals (line 22105) | func (v *AdminService_GetDynamicConfig_Result) Equals(rhs *AdminServic...
method MarshalLogObject (line 22126) | func (v *AdminService_GetDynamicConfig_Result) MarshalLogObject(enc za...
method GetSuccess (line 22144) | func (v *AdminService_GetDynamicConfig_Result) GetSuccess() (o *GetDyn...
method IsSetSuccess (line 22153) | func (v *AdminService_GetDynamicConfig_Result) IsSetSuccess() bool {
method GetBadRequestError (line 22159) | func (v *AdminService_GetDynamicConfig_Result) GetBadRequestError() (o...
method IsSetBadRequestError (line 22168) | func (v *AdminService_GetDynamicConfig_Result) IsSetBadRequestError() ...
method GetInternalServiceError (line 22174) | func (v *AdminService_GetDynamicConfig_Result) GetInternalServiceError...
method IsSetInternalServiceError (line 22183) | func (v *AdminService_GetDynamicConfig_Result) IsSetInternalServiceErr...
method MethodName (line 22191) | func (v *AdminService_GetDynamicConfig_Result) MethodName() string {
method EnvelopeType (line 22198) | func (v *AdminService_GetDynamicConfig_Result) EnvelopeType() wire.Env...
function _GetDynamicConfigResponse_Read (line 21863) | func _GetDynamicConfigResponse_Read(w wire.Value) (*GetDynamicConfigResp...
function _GetDynamicConfigResponse_Decode (line 21998) | func _GetDynamicConfigResponse_Decode(sr stream.Reader) (*GetDynamicConf...
type AdminService_GetGlobalIsolationGroups_Args (line 22205) | type AdminService_GetGlobalIsolationGroups_Args struct
method ToWire (line 22224) | func (v *AdminService_GetGlobalIsolationGroups_Args) ToWire() (wire.Va...
method FromWire (line 22267) | func (v *AdminService_GetGlobalIsolationGroups_Args) FromWire(w wire.V...
method Encode (line 22290) | func (v *AdminService_GetGlobalIsolationGroups_Args) Encode(sw stream....
method Decode (line 22321) | func (v *AdminService_GetGlobalIsolationGroups_Args) Decode(sr stream....
method String (line 22364) | func (v *AdminService_GetGlobalIsolationGroups_Args) String() string {
method Equals (line 22383) | func (v *AdminService_GetGlobalIsolationGroups_Args) Equals(rhs *Admin...
method MarshalLogObject (line 22398) | func (v *AdminService_GetGlobalIsolationGroups_Args) MarshalLogObject(...
method GetRequest (line 22410) | func (v *AdminService_GetGlobalIsolationGroups_Args) GetRequest() (o *...
method IsSetRequest (line 22419) | func (v *AdminService_GetGlobalIsolationGroups_Args) IsSetRequest() bo...
method MethodName (line 22427) | func (v *AdminService_GetGlobalIsolationGroups_Args) MethodName() stri...
method EnvelopeType (line 22434) | func (v *AdminService_GetGlobalIsolationGroups_Args) EnvelopeType() wi...
function _GetGlobalIsolationGroupsRequest_Read (line 22244) | func _GetGlobalIsolationGroupsRequest_Read(w wire.Value) (*GetGlobalIsol...
function _GetGlobalIsolationGroupsRequest_Decode (line 22310) | func _GetGlobalIsolationGroupsRequest_Decode(sr stream.Reader) (*GetGlob...
function init (line 22483) | func init() {
type AdminService_GetGlobalIsolationGroups_Result (line 22538) | type AdminService_GetGlobalIsolationGroups_Result struct
method ToWire (line 22559) | func (v *AdminService_GetGlobalIsolationGroups_Result) ToWire() (wire....
method FromWire (line 22614) | func (v *AdminService_GetGlobalIsolationGroups_Result) FromWire(w wire...
method Encode (line 22656) | func (v *AdminService_GetGlobalIsolationGroups_Result) Encode(sw strea...
method Decode (line 22711) | func (v *AdminService_GetGlobalIsolationGroups_Result) Decode(sr strea...
method String (line 22771) | func (v *AdminService_GetGlobalIsolationGroups_Result) String() string {
method Equals (line 22794) | func (v *AdminService_GetGlobalIsolationGroups_Result) Equals(rhs *Adm...
method MarshalLogObject (line 22812) | func (v *AdminService_GetGlobalIsolationGroups_Result) MarshalLogObjec...
method GetSuccess (line 22827) | func (v *AdminService_GetGlobalIsolationGroups_Result) GetSuccess() (o...
method IsSetSuccess (line 22836) | func (v *AdminService_GetGlobalIsolationGroups_Result) IsSetSuccess() ...
method GetBadRequestError (line 22842) | func (v *AdminService_GetGlobalIsolationGroups_Result) GetBadRequestEr...
method IsSetBadRequestError (line 22851) | func (v *AdminService_GetGlobalIsolationGroups_Result) IsSetBadRequest...
method MethodName (line 22859) | func (v *AdminService_GetGlobalIsolationGroups_Result) MethodName() st...
method EnvelopeType (line 22866) | func (v *AdminService_GetGlobalIsolationGroups_Result) EnvelopeType() ...
function _GetGlobalIsolationGroupsResponse_Read (line 22591) | func _GetGlobalIsolationGroupsResponse_Read(w wire.Value) (*GetGlobalIso...
function _GetGlobalIsolationGroupsResponse_Decode (line 22700) | func _GetGlobalIsolationGroupsResponse_Decode(sr stream.Reader) (*GetGlo...
type AdminService_GetReplicationMessages_Args (line 22873) | type AdminService_GetReplicationMessages_Args struct
method ToWire (line 22892) | func (v *AdminService_GetReplicationMessages_Args) ToWire() (wire.Valu...
method FromWire (line 22935) | func (v *AdminService_GetReplicationMessages_Args) FromWire(w wire.Val...
method Encode (line 22958) | func (v *AdminService_GetReplicationMessages_Args) Encode(sw stream.Wr...
method Decode (line 22989) | func (v *AdminService_GetReplicationMessages_Args) Decode(sr stream.Re...
method String (line 23032) | func (v *AdminService_GetReplicationMessages_Args) String() string {
method Equals (line 23051) | func (v *AdminService_GetReplicationMessages_Args) Equals(rhs *AdminSe...
method MarshalLogObject (line 23066) | func (v *AdminService_GetReplicationMessages_Args) MarshalLogObject(en...
method GetRequest (line 23078) | func (v *AdminService_GetReplicationMessages_Args) GetRequest() (o *re...
method IsSetRequest (line 23087) | func (v *AdminService_GetReplicationMessages_Args) IsSetRequest() bool {
method MethodName (line 23095) | func (v *AdminService_GetReplicationMessages_Args) MethodName() string {
method EnvelopeType (line 23102) | func (v *AdminService_GetReplicationMessages_Args) EnvelopeType() wire...
function _GetReplicationMessagesRequest_Read (line 22912) | func _GetReplicationMessagesRequest_Read(w wire.Value) (*replicator.GetR...
function _GetReplicationMessagesRequest_Decode (line 22978) | func _GetReplicationMessagesRequest_Decode(sr stream.Reader) (*replicato...
function init (line 23151) | func init() {
type AdminService_GetReplicationMessages_Result (line 23239) | type AdminService_GetReplicationMessages_Result struct
method ToWire (line 23263) | func (v *AdminService_GetReplicationMessages_Result) ToWire() (wire.Va...
method FromWire (line 23342) | func (v *AdminService_GetReplicationMessages_Result) FromWire(w wire.V...
method Encode (line 23417) | func (v *AdminService_GetReplicationMessages_Result) Encode(sw stream....
method Decode (line 23517) | func (v *AdminService_GetReplicationMessages_Result) Decode(sr stream....
method String (line 23604) | func (v *AdminService_GetReplicationMessages_Result) String() string {
method Equals (line 23639) | func (v *AdminService_GetReplicationMessages_Result) Equals(rhs *Admin...
method MarshalLogObject (line 23666) | func (v *AdminService_GetReplicationMessages_Result) MarshalLogObject(...
method GetSuccess (line 23690) | func (v *AdminService_GetReplicationMessages_Result) GetSuccess() (o *...
method IsSetSuccess (line 23699) | func (v *AdminService_GetReplicationMessages_Result) IsSetSuccess() bo...
method GetBadRequestError (line 23705) | func (v *AdminService_GetReplicationMessages_Result) GetBadRequestErro...
method IsSetBadRequestError (line 23714) | func (v *AdminService_GetReplicationMessages_Result) IsSetBadRequestEr...
method GetLimitExceededError (line 23720) | func (v *AdminService_GetReplicationMessages_Result) GetLimitExceededE...
method IsSetLimitExceededError (line 23729) | func (v *AdminService_GetReplicationMessages_Result) IsSetLimitExceede...
method GetServiceBusyError (line 23735) | func (v *AdminService_GetReplicationMessages_Result) GetServiceBusyErr...
method IsSetServiceBusyError (line 23744) | func (v *AdminService_GetReplicationMessages_Result) IsSetServiceBusyE...
method GetClientVersionNotSupportedError (line 23750) | func (v *AdminService_GetReplicationMessages_Result) GetClientVersionN...
method IsSetClientVersionNotSupportedError (line 23759) | func (v *AdminService_GetReplicationMessages_Result) IsSetClientVersio...
method MethodName (line 23767) | func (v *AdminService_GetReplicationMessages_Result) MethodName() stri...
method EnvelopeType (line 23774) | func (v *AdminService_GetReplicationMessages_Result) EnvelopeType() wi...
function _GetReplicationMessagesResponse_Read (line 23319) | func _GetReplicationMessagesResponse_Read(w wire.Value) (*replicator.Get...
function _GetReplicationMessagesResponse_Decode (line 23506) | func _GetReplicationMessagesResponse_Decode(sr stream.Reader) (*replicat...
type AdminService_GetWorkflowExecutionRawHistoryV2_Args (line 23781) | type AdminService_GetWorkflowExecutionRawHistoryV2_Args struct
method ToWire (line 23800) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) ToWire() ...
method FromWire (line 23843) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) FromWire(...
method Encode (line 23866) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) Encode(sw...
method Decode (line 23897) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) Decode(sr...
method String (line 23940) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) String() ...
method Equals (line 23959) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) Equals(rh...
method MarshalLogObject (line 23974) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) MarshalLo...
method GetGetRequest (line 23986) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) GetGetReq...
method IsSetGetRequest (line 23995) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) IsSetGetR...
method MethodName (line 24003) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) MethodNam...
method EnvelopeType (line 24010) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Args) EnvelopeT...
function _GetWorkflowExecutionRawHistoryV2Request_Read (line 23820) | func _GetWorkflowExecutionRawHistoryV2Request_Read(w wire.Value) (*GetWo...
function _GetWorkflowExecutionRawHistoryV2Request_Decode (line 23886) | func _GetWorkflowExecutionRawHistoryV2Request_Decode(sr stream.Reader) (...
function init (line 24059) | func init() {
type AdminService_GetWorkflowExecutionRawHistoryV2_Result (line 24147) | type AdminService_GetWorkflowExecutionRawHistoryV2_Result struct
method ToWire (line 24171) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) ToWire(...
method FromWire (line 24250) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) FromWir...
method Encode (line 24325) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) Encode(...
method Decode (line 24425) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) Decode(...
method String (line 24512) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) String(...
method Equals (line 24547) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) Equals(...
method MarshalLogObject (line 24574) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) Marshal...
method GetSuccess (line 24598) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) GetSucc...
method IsSetSuccess (line 24607) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) IsSetSu...
method GetBadRequestError (line 24613) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) GetBadR...
method IsSetBadRequestError (line 24622) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) IsSetBa...
method GetInternalServiceError (line 24628) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) GetInte...
method IsSetInternalServiceError (line 24637) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) IsSetIn...
method GetEntityNotExistError (line 24643) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) GetEnti...
method IsSetEntityNotExistError (line 24652) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) IsSetEn...
method GetServiceBusyError (line 24658) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) GetServ...
method IsSetServiceBusyError (line 24667) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) IsSetSe...
method MethodName (line 24675) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) MethodN...
method EnvelopeType (line 24682) | func (v *AdminService_GetWorkflowExecutionRawHistoryV2_Result) Envelop...
function _GetWorkflowExecutionRawHistoryV2Response_Read (line 24227) | func _GetWorkflowExecutionRawHistoryV2Response_Read(w wire.Value) (*GetW...
function _GetWorkflowExecutionRawHistoryV2Response_Decode (line 24414) | func _GetWorkflowExecutionRawHistoryV2Response_Decode(sr stream.Reader) ...
type AdminService_ListDynamicConfig_Args (line 24689) | type AdminService_ListDynamicConfig_Args struct
method ToWire (line 24708) | func (v *AdminService_ListDynamicConfig_Args) ToWire() (wire.Value, er...
method FromWire (line 24751) | func (v *AdminService_ListDynamicConfig_Args) FromWire(w wire.Value) e...
method Encode (line 24774) | func (v *AdminService_ListDynamicConfig_Args) Encode(sw stream.Writer)...
method Decode (line 24805) | func (v *AdminService_ListDynamicConfig_Args) Decode(sr stream.Reader)...
method String (line 24848) | func (v *AdminService_ListDynamicConfig_Args) String() string {
method Equals (line 24867) | func (v *AdminService_ListDynamicConfig_Args) Equals(rhs *AdminService...
method MarshalLogObject (line 24882) | func (v *AdminService_ListDynamicConfig_Args) MarshalLogObject(enc zap...
method GetRequest (line 24894) | func (v *AdminService_ListDynamicConfig_Args) GetRequest() (o *ListDyn...
method IsSetRequest (line 24903) | func (v *AdminService_ListDynamicConfig_Args) IsSetRequest() bool {
method MethodName (line 24911) | func (v *AdminService_ListDynamicConfig_Args) MethodName() string {
method EnvelopeType (line 24918) | func (v *AdminService_ListDynamicConfig_Args) EnvelopeType() wire.Enve...
function _ListDynamicConfigRequest_Read (line 24728) | func _ListDynamicConfigRequest_Read(w wire.Value) (*ListDynamicConfigReq...
function _ListDynamicConfigRequest_Decode (line 24794) | func _ListDynamicConfigRequest_Decode(sr stream.Reader) (*ListDynamicCon...
function init (line 24967) | func init() {
type AdminService_ListDynamicConfig_Result (line 25022) | type AdminService_ListDynamicConfig_Result struct
method ToWire (line 25043) | func (v *AdminService_ListDynamicConfig_Result) ToWire() (wire.Value, ...
method FromWire (line 25098) | func (v *AdminService_ListDynamicConfig_Result) FromWire(w wire.Value)...
method Encode (line 25140) | func (v *AdminService_ListDynamicConfig_Result) Encode(sw stream.Write...
method Decode (line 25195) | func (v *AdminService_ListDynamicConfig_Result) Decode(sr stream.Reade...
method String (line 25255) | func (v *AdminService_ListDynamicConfig_Result) String() string {
method Equals (line 25278) | func (v *AdminService_ListDynamicConfig_Result) Equals(rhs *AdminServi...
method MarshalLogObject (line 25296) | func (v *AdminService_ListDynamicConfig_Result) MarshalLogObject(enc z...
method GetSuccess (line 25311) | func (v *AdminService_ListDynamicConfig_Result) GetSuccess() (o *ListD...
method IsSetSuccess (line 25320) | func (v *AdminService_ListDynamicConfig_Result) IsSetSuccess() bool {
method GetInternalServiceError (line 25326) | func (v *AdminService_ListDynamicConfig_Result) GetInternalServiceErro...
method IsSetInternalServiceError (line 25335) | func (v *AdminService_ListDynamicConfig_Result) IsSetInternalServiceEr...
method MethodName (line 25343) | func (v *AdminService_ListDynamicConfig_Result) MethodName() string {
method EnvelopeType (line 25350) | func (v *AdminService_ListDynamicConfig_Result) EnvelopeType() wire.En...
function _ListDynamicConfigResponse_Read (line 25075) | func _ListDynamicConfigResponse_Read(w wire.Value) (*ListDynamicConfigRe...
function _ListDynamicConfigResponse_Decode (line 25184) | func _ListDynamicConfigResponse_Decode(sr stream.Reader) (*ListDynamicCo...
type AdminService_MaintainCorruptWorkflow_Args (line 25357) | type AdminService_MaintainCorruptWorkflow_Args struct
method ToWire (line 25376) | func (v *AdminService_MaintainCorruptWorkflow_Args) ToWire() (wire.Val...
method FromWire (line 25419) | func (v *AdminService_MaintainCorruptWorkflow_Args) FromWire(w wire.Va...
method Encode (line 25442) | func (v *AdminService_MaintainCorruptWorkflow_Args) Encode(sw stream.W...
method Decode (line 25473) | func (v *AdminService_MaintainCorruptWorkflow_Args) Decode(sr stream.R...
method String (line 25516) | func (v *AdminService_MaintainCorruptWorkflow_Args) String() string {
method Equals (line 25535) | func (v *AdminService_MaintainCorruptWorkflow_Args) Equals(rhs *AdminS...
method MarshalLogObject (line 25550) | func (v *AdminService_MaintainCorruptWorkflow_Args) MarshalLogObject(e...
method GetRequest (line 25562) | func (v *AdminService_MaintainCorruptWorkflow_Args) GetRequest() (o *A...
method IsSetRequest (line 25571) | func (v *AdminService_MaintainCorruptWorkflow_Args) IsSetRequest() bool {
method MethodName (line 25579) | func (v *AdminService_MaintainCorruptWorkflow_Args) MethodName() string {
method EnvelopeType (line 25586) | func (v *AdminService_MaintainCorruptWorkflow_Args) EnvelopeType() wir...
function _AdminMaintainWorkflowRequest_Read (line 25396) | func _AdminMaintainWorkflowRequest_Read(w wire.Value) (*AdminMaintainWor...
function _AdminMaintainWorkflowRequest_Decode (line 25462) | func _AdminMaintainWorkflowRequest_Decode(sr stream.Reader) (*AdminMaint...
function init (line 25635) | func init() {
type AdminService_MaintainCorruptWorkflow_Result (line 25712) | type AdminService_MaintainCorruptWorkflow_Result struct
method ToWire (line 25735) | func (v *AdminService_MaintainCorruptWorkflow_Result) ToWire() (wire.V...
method FromWire (line 25806) | func (v *AdminService_MaintainCorruptWorkflow_Result) FromWire(w wire....
method Encode (line 25870) | func (v *AdminService_MaintainCorruptWorkflow_Result) Encode(sw stream...
method Decode (line 25955) | func (v *AdminService_MaintainCorruptWorkflow_Result) Decode(sr stream...
method String (line 26033) | func (v *AdminService_MaintainCorruptWorkflow_Result) String() string {
method Equals (line 26064) | func (v *AdminService_MaintainCorruptWorkflow_Result) Equals(rhs *Admi...
method MarshalLogObject (line 26088) | func (v *AdminService_MaintainCorruptWorkflow_Result) MarshalLogObject...
method GetSuccess (line 26109) | func (v *AdminService_MaintainCorruptWorkflow_Result) GetSuccess() (o ...
method IsSetSuccess (line 26118) | func (v *AdminService_MaintainCorruptWorkflow_Result) IsSetSuccess() b...
method GetBadRequestError (line 26124) | func (v *AdminService_MaintainCorruptWorkflow_Result) GetBadRequestErr...
method IsSetBadRequestError (line 26133) | func (v *AdminService_MaintainCorruptWorkflow_Result) IsSetBadRequestE...
method GetEntityNotExistError (line 26139) | func (v *AdminService_MaintainCorruptWorkflow_Result) GetEntityNotExis...
method IsSetEntityNotExistError (line 26148) | func (v *AdminService_MaintainCorruptWorkflow_Result) IsSetEntityNotEx...
method GetInternalServiceError (line 26154) | func (v *AdminService_MaintainCorruptWorkflow_Result) GetInternalServi...
method IsSetInternalServiceError (line 26163) | func (v *AdminService_MaintainCorruptWorkflow_Result) IsSetInternalSer...
method MethodName (line 26171) | func (v *AdminService_MaintainCorruptWorkflow_Result) MethodName() str...
method EnvelopeType (line 26178) | func (v *AdminService_MaintainCorruptWorkflow_Result) EnvelopeType() w...
function _AdminMaintainWorkflowResponse_Read (line 25783) | func _AdminMaintainWorkflowResponse_Read(w wire.Value) (*AdminMaintainWo...
function _AdminMaintainWorkflowResponse_Decode (line 25944) | func _AdminMaintainWorkflowResponse_Decode(sr stream.Reader) (*AdminMain...
type AdminService_MergeDLQMessages_Args (line 26185) | type AdminService_MergeDLQMessages_Args struct
method ToWire (line 26204) | func (v *AdminService_MergeDLQMessages_Args) ToWire() (wire.Value, err...
method FromWire (line 26247) | func (v *AdminService_MergeDLQMessages_Args) FromWire(w wire.Value) er...
method Encode (line 26270) | func (v *AdminService_MergeDLQMessages_Args) Encode(sw stream.Writer) ...
method Decode (line 26301) | func (v *AdminService_MergeDLQMessages_Args) Decode(sr stream.Reader) ...
method String (line 26344) | func (v *AdminService_MergeDLQMessages_Args) String() string {
method Equals (line 26363) | func (v *AdminService_MergeDLQMessages_Args) Equals(rhs *AdminService_...
method MarshalLogObject (line 26378) | func (v *AdminService_MergeDLQMessages_Args) MarshalLogObject(enc zapc...
method GetRequest (line 26390) | func (v *AdminService_MergeDLQMessages_Args) GetRequest() (o *replicat...
method IsSetRequest (line 26399) | func (v *AdminService_MergeDLQMessages_Args) IsSetRequest() bool {
method MethodName (line 26407) | func (v *AdminService_MergeDLQMessages_Args) MethodName() string {
method EnvelopeType (line 26414) | func (v *AdminService_MergeDLQMessages_Args) EnvelopeType() wire.Envel...
function _MergeDLQMessagesRequest_Read (line 26224) | func _MergeDLQMessagesRequest_Read(w wire.Value) (*replicator.MergeDLQMe...
function _MergeDLQMessagesRequest_Decode (line 26290) | func _MergeDLQMessagesRequest_Decode(sr stream.Reader) (*replicator.Merg...
function init (line 26463) | func init() {
type AdminService_MergeDLQMessages_Result (line 26551) | type AdminService_MergeDLQMessages_Result struct
method ToWire (line 26575) | func (v *AdminService_MergeDLQMessages_Result) ToWire() (wire.Value, e...
method FromWire (line 26654) | func (v *AdminService_MergeDLQMessages_Result) FromWire(w wire.Value) ...
method Encode (line 26729) | func (v *AdminService_MergeDLQMessages_Result) Encode(sw stream.Writer...
method Decode (line 26829) | func (v *AdminService_MergeDLQMessages_Result) Decode(sr stream.Reader...
method String (line 26916) | func (v *AdminService_MergeDLQMessages_Result) String() string {
method Equals (line 26951) | func (v *AdminService_MergeDLQMessages_Result) Equals(rhs *AdminServic...
method MarshalLogObject (line 26978) | func (v *AdminService_MergeDLQMessages_Result) MarshalLogObject(enc za...
method GetSuccess (line 27002) | func (v *AdminService_MergeDLQMessages_Result) GetSuccess() (o *replic...
method IsSetSuccess (line 27011) | func (v *AdminService_MergeDLQMessages_Result) IsSetSuccess() bool {
method GetBadRequestError (line 27017) | func (v *AdminService_MergeDLQMessages_Result) GetBadRequestError() (o...
method IsSetBadRequestError (line 27026) | func (v *AdminService_MergeDLQMessages_Result) IsSetBadRequestError() ...
method GetInternalServiceError (line 27032) | func (v *AdminService_MergeDLQMessages_Result) GetInternalServiceError...
method IsSetInternalServiceError (line 27041) | func (v *AdminService_MergeDLQMessages_Result) IsSetInternalServiceErr...
method GetServiceBusyError (line 27047) | func (v *AdminService_MergeDLQMessages_Result) GetServiceBusyError() (...
method IsSetServiceBusyError (line 27056) | func (v *AdminService_MergeDLQMessages_Result) IsSetServiceBusyError()...
method GetEntityNotExistError (line 27062) | func (v *AdminService_MergeDLQMessages_Result) GetEntityNotExistError(...
method IsSetEntityNotExistError (line 27071) | func (v *AdminService_MergeDLQMessages_Result) IsSetEntityNotExistErro...
method MethodName (line 27079) | func (v *AdminService_MergeDLQMessages_Result) MethodName() string {
method EnvelopeType (line 27086) | func (v *AdminService_MergeDLQMessages_Result) EnvelopeType() wire.Env...
function _MergeDLQMessagesResponse_Read (line 26631) | func _MergeDLQMessagesResponse_Read(w wire.Value) (*replicator.MergeDLQM...
function _MergeDLQMessagesResponse_Decode (line 26818) | func _MergeDLQMessagesResponse_Decode(sr stream.Reader) (*replicator.Mer...
type AdminService_PurgeDLQMessages_Args (line 27093) | type AdminService_PurgeDLQMessages_Args struct
method ToWire (line 27112) | func (v *AdminService_PurgeDLQMessages_Args) ToWire() (wire.Value, err...
method FromWire (line 27155) | func (v *AdminService_PurgeDLQMessages_Args) FromWire(w wire.Value) er...
method Encode (line 27178) | func (v *AdminService_PurgeDLQMessages_Args) Encode(sw stream.Writer) ...
method Decode (line 27209) | func (v *AdminService_PurgeDLQMessages_Args) Decode(sr stream.Reader) ...
method String (line 27252) | func (v *AdminService_PurgeDLQMessages_Args) String() string {
method Equals (line 27271) | func (v *AdminService_PurgeDLQMessages_Args) Equals(rhs *AdminService_...
method MarshalLogObject (line 27286) | func (v *AdminService_PurgeDLQMessages_Args) MarshalLogObject(enc zapc...
method GetRequest (line 27298) | func (v *AdminService_PurgeDLQMessages_Args) GetRequest() (o *replicat...
method IsSetRequest (line 27307) | func (v *AdminService_PurgeDLQMessages_Args) IsSetRequest() bool {
method MethodName (line 27315) | func (v *AdminService_PurgeDLQMessages_Args) MethodName() string {
method EnvelopeType (line 27322) | func (v *AdminService_PurgeDLQMessages_Args) EnvelopeType() wire.Envel...
function _PurgeDLQMessagesRequest_Read (line 27132) | func _PurgeDLQMessagesRequest_Read(w wire.Value) (*replicator.PurgeDLQMe...
function _PurgeDLQMessagesRequest_Decode (line 27198) | func _PurgeDLQMessagesRequest_Decode(sr stream.Reader) (*replicator.Purg...
function init (line 27372) | func init() {
type AdminService_PurgeDLQMessages_Result (line 27451) | type AdminService_PurgeDLQMessages_Result struct
method ToWire (line 27473) | func (v *AdminService_PurgeDLQMessages_Result) ToWire() (wire.Value, e...
method FromWire (line 27538) | func (v *AdminService_PurgeDLQMessages_Result) FromWire(w wire.Value) ...
method Encode (line 27602) | func (v *AdminService_PurgeDLQMessages_Result) Encode(sw stream.Writer...
method Decode (line 27681) | func (v *AdminService_PurgeDLQMessages_Result) Decode(sr stream.Reader...
method String (line 27759) | func (v *AdminService_PurgeDLQMessages_Result) String() string {
method Equals (line 27790) | func (v *AdminService_PurgeDLQMessages_Result) Equals(rhs *AdminServic...
method MarshalLogObject (line 27814) | func (v *AdminService_PurgeDLQMessages_Result) MarshalLogObject(enc za...
method GetBadRequestError (line 27835) | func (v *AdminService_PurgeDLQMessages_Result) GetBadRequestError() (o...
method IsSetBadRequestError (line 27844) | func (v *AdminService_PurgeDLQMessages_Result) IsSetBadRequestError() ...
method GetInternalServiceError (line 27850) | func (v *AdminService_PurgeDLQMessages_Result) GetInternalServiceError...
method IsSetInternalServiceError (line 27859) | func (v *AdminService_PurgeDLQMessages_Result) IsSetInternalServiceErr...
method GetServiceBusyError (line 27865) | func (v *AdminService_PurgeDLQMessages_Result) GetServiceBusyError() (...
method IsSetServiceBusyError (line 27874) | func (v *AdminService_PurgeDLQMessages_Result) IsSetServiceBusyError()...
method GetEntityNotExistError (line 27880) | func (v *AdminService_PurgeDLQMessages_Result) GetEntityNotExistError(...
method IsSetEntityNotExistError (line 27889) | func (v *AdminService_PurgeDLQMessages_Result) IsSetEntityNotExistErro...
method MethodName (line 27897) | func (v *AdminService_PurgeDLQMessages_Result) MethodName() string {
method EnvelopeType (line 27904) | func (v *AdminService_PurgeDLQMessages_Result) EnvelopeType() wire.Env...
type AdminService_ReadDLQMessages_Args (line 27911) | type AdminService_ReadDLQMessages_Args struct
method ToWire (line 27930) | func (v *AdminService_ReadDLQMessages_Args) ToWire() (wire.Value, erro...
method FromWire (line 27973) | func (v *AdminService_ReadDLQMessages_Args) FromWire(w wire.Value) err...
method Encode (line 27996) | func (v *AdminService_ReadDLQMessages_Args) Encode(sw stream.Writer) e...
method Decode (line 28027) | func (v *AdminService_ReadDLQMessages_Args) Decode(sr stream.Reader) e...
method String (line 28070) | func (v *AdminService_ReadDLQMessages_Args) String() string {
method Equals (line 28089) | func (v *AdminService_ReadDLQMessages_Args) Equals(rhs *AdminService_R...
method MarshalLogObject (line 28104) | func (v *AdminService_ReadDLQMessages_Args) MarshalLogObject(enc zapco...
method GetRequest (line 28116) | func (v *AdminService_ReadDLQMessages_Args) GetRequest() (o *replicato...
method IsSetRequest (line 28125) | func (v *AdminService_ReadDLQMessages_Args) IsSetRequest() bool {
method MethodName (line 28133) | func (v *AdminService_ReadDLQMessages_Args) MethodName() string {
method EnvelopeType (line 28140) | func (v *AdminService_ReadDLQMessages_Args) EnvelopeType() wire.Envelo...
function _ReadDLQMessagesRequest_Read (line 27950) | func _ReadDLQMessagesRequest_Read(w wire.Value) (*replicator.ReadDLQMess...
function _ReadDLQMessagesRequest_Decode (line 28016) | func _ReadDLQMessagesRequest_Decode(sr stream.Reader) (*replicator.ReadD...
function init (line 28189) | func init() {
type AdminService_ReadDLQMessages_Result (line 28277) | type AdminService_ReadDLQMessages_Result struct
method ToWire (line 28301) | func (v *AdminService_ReadDLQMessages_Result) ToWire() (wire.Value, er...
method FromWire (line 28380) | func (v *AdminService_ReadDLQMessages_Result) FromWire(w wire.Value) e...
method Encode (line 28455) | func (v *AdminService_ReadDLQMessages_Result) Encode(sw stream.Writer)...
method Decode (line 28555) | func (v *AdminService_ReadDLQMessages_Result) Decode(sr stream.Reader)...
method String (line 28642) | func (v *AdminService_ReadDLQMessages_Result) String() string {
method Equals (line 28677) | func (v *AdminService_ReadDLQMessages_Result) Equals(rhs *AdminService...
method MarshalLogObject (line 28704) | func (v *AdminService_ReadDLQMessages_Result) MarshalLogObject(enc zap...
method GetSuccess (line 28728) | func (v *AdminService_ReadDLQMessages_Result) GetSuccess() (o *replica...
method IsSetSuccess (line 28737) | func (v *AdminService_ReadDLQMessages_Result) IsSetSuccess() bool {
method GetBadRequestError (line 28743) | func (v *AdminService_ReadDLQMessages_Result) GetBadRequestError() (o ...
method IsSetBadRequestError (line 28752) | func (v *AdminService_ReadDLQMessages_Result) IsSetBadRequestError() b...
method GetInternalServiceError (line 28758) | func (v *AdminService_ReadDLQMessages_Result) GetInternalServiceError(...
method IsSetInternalServiceError (line 28767) | func (v *AdminService_ReadDLQMessages_Result) IsSetInternalServiceErro...
method GetServiceBusyError (line 28773) | func (v *AdminService_ReadDLQMessages_Result) GetServiceBusyError() (o...
method IsSetServiceBusyError (line 28782) | func (v *AdminService_ReadDLQMessages_Result) IsSetServiceBusyError() ...
method GetEntityNotExistError (line 28788) | func (v *AdminService_ReadDLQMessages_Result) GetEntityNotExistError()...
method IsSetEntityNotExistError (line 28797) | func (v *AdminService_ReadDLQMessages_Result) IsSetEntityNotExistError...
method MethodName (line 28805) | func (v *AdminService_ReadDLQMessages_Result) MethodName() string {
method EnvelopeType (line 28812) | func (v *AdminService_ReadDLQMessages_Result) EnvelopeType() wire.Enve...
function _ReadDLQMessagesResponse_Read (line 28357) | func _ReadDLQMessagesResponse_Read(w wire.Value) (*replicator.ReadDLQMes...
function _ReadDLQMessagesResponse_Decode (line 28544) | func _ReadDLQMessagesResponse_Decode(sr stream.Reader) (*replicator.Read...
type AdminService_ReapplyEvents_Args (line 28819) | type AdminService_ReapplyEvents_Args struct
method ToWire (line 28838) | func (v *AdminService_ReapplyEvents_Args) ToWire() (wire.Value, error) {
method FromWire (line 28881) | func (v *AdminService_ReapplyEvents_Args) FromWire(w wire.Value) error {
method Encode (line 28904) | func (v *AdminService_ReapplyEvents_Args) Encode(sw stream.Writer) err...
method Decode (line 28935) | func (v *AdminService_ReapplyEvents_Args) Decode(sr stream.Reader) err...
method String (line 28978) | func (v *AdminService_ReapplyEvents_Args) String() string {
method Equals (line 28997) | func (v *AdminService_ReapplyEvents_Args) Equals(rhs *AdminService_Rea...
method MarshalLogObject (line 29012) | func (v *AdminService_ReapplyEvents_Args) MarshalLogObject(enc zapcore...
method GetReapplyEventsRequest (line 29024) | func (v *AdminService_ReapplyEvents_Args) GetReapplyEventsRequest() (o...
method IsSetReapplyEventsRequest (line 29033) | func (v *AdminService_ReapplyEvents_Args) IsSetReapplyEventsRequest() ...
method MethodName (line 29041) | func (v *AdminService_ReapplyEvents_Args) MethodName() string {
method EnvelopeType (line 29048) | func (v *AdminService_ReapplyEvents_Args) EnvelopeType() wire.Envelope...
function _ReapplyEventsRequest_Read (line 28858) | func _ReapplyEventsRequest_Read(w wire.Value) (*shared.ReapplyEventsRequ...
function _ReapplyEventsRequest_Decode (line 28924) | func _ReapplyEventsRequest_Decode(sr stream.Reader) (*shared.ReapplyEven...
function init (line 29098) | func init() {
type AdminService_ReapplyEvents_Result (line 29188) | type AdminService_ReapplyEvents_Result struct
method ToWire (line 29211) | func (v *AdminService_ReapplyEvents_Result) ToWire() (wire.Value, erro...
method FromWire (line 29290) | func (v *AdminService_ReapplyEvents_Result) FromWire(w wire.Value) err...
method Encode (line 29365) | func (v *AdminService_ReapplyEvents_Result) Encode(sw stream.Writer) e...
method Decode (line 29465) | func (v *AdminService_ReapplyEvents_Result) Decode(sr stream.Reader) e...
method String (line 29552) | func (v *AdminService_ReapplyEvents_Result) String() string {
method Equals (line 29587) | func (v *AdminService_ReapplyEvents_Result) Equals(rhs *AdminService_R...
method MarshalLogObject (line 29614) | func (v *AdminService_ReapplyEvents_Result) MarshalLogObject(enc zapco...
method GetBadRequestError (line 29638) | func (v *AdminService_ReapplyEvents_Result) GetBadRequestError() (o *s...
method IsSetBadRequestError (line 29647) | func (v *AdminService_ReapplyEvents_Result) IsSetBadRequestError() bool {
method GetDomainNotActiveError (line 29653) | func (v *AdminService_ReapplyEvents_Result) GetDomainNotActiveError() ...
method IsSetDomainNotActiveError (line 29662) | func (v *AdminService_ReapplyEvents_Result) IsSetDomainNotActiveError(...
method GetLimitExceededError (line 29668) | func (v *AdminService_ReapplyEvents_Result) GetLimitExceededError() (o...
method IsSetLimitExceededError (line 29677) | func (v *AdminService_ReapplyEvents_Result) IsSetLimitExceededError() ...
method GetServiceBusyError (line 29683) | func (v *AdminService_ReapplyEvents_Result) GetServiceBusyError() (o *...
method IsSetServiceBusyError (line 29692) | func (v *AdminService_ReapplyEvents_Result) IsSetServiceBusyError() bo...
method GetEntityNotExistError (line 29698) | func (v *AdminService_ReapplyEvents_Result) GetEntityNotExistError() (...
method IsSetEntityNotExistError (line 29707) | func (v *AdminService_ReapplyEvents_Result) IsSetEntityNotExistError()...
method MethodName (line 29715) | func (v *AdminService_ReapplyEvents_Result) MethodName() string {
method EnvelopeType (line 29722) | func (v *AdminService_ReapplyEvents_Result) EnvelopeType() wire.Envelo...
function _DomainNotActiveError_Read (line 29267) | func _DomainNotActiveError_Read(w wire.Value) (*shared.DomainNotActiveEr...
function _DomainNotActiveError_Decode (line 29454) | func _DomainNotActiveError_Decode(sr stream.Reader) (*shared.DomainNotAc...
type AdminService_RefreshWorkflowTasks_Args (line 29729) | type AdminService_RefreshWorkflowTasks_Args struct
method ToWire (line 29748) | func (v *AdminService_RefreshWorkflowTasks_Args) ToWire() (wire.Value,...
method FromWire (line 29791) | func (v *AdminService_RefreshWorkflowTasks_Args) FromWire(w wire.Value...
method Encode (line 29814) | func (v *AdminService_RefreshWorkflowTasks_Args) Encode(sw stream.Writ...
method Decode (line 29845) | func (v *AdminService_RefreshWorkflowTasks_Args) Decode(sr stream.Read...
method String (line 29888) | func (v *AdminService_RefreshWorkflowTasks_Args) String() string {
method Equals (line 29907) | func (v *AdminService_RefreshWorkflowTasks_Args) Equals(rhs *AdminServ...
method MarshalLogObject (line 29922) | func (v *AdminService_RefreshWorkflowTasks_Args) MarshalLogObject(enc ...
method GetRequest (line 29934) | func (v *AdminService_RefreshWorkflowTasks_Args) GetRequest() (o *shar...
method IsSetRequest (line 29943) | func (v *AdminService_RefreshWorkflowTasks_Args) IsSetRequest() bool {
method MethodName (line 29951) | func (v *AdminService_RefreshWorkflowTasks_Args) MethodName() string {
method EnvelopeType (line 29958) | func (v *AdminService_RefreshWorkflowTasks_Args) EnvelopeType() wire.E...
function _RefreshWorkflowTasksRequest_Read (line 29768) | func _RefreshWorkflowTasksRequest_Read(w wire.Value) (*shared.RefreshWor...
function _RefreshWorkflowTasksRequest_Decode (line 29834) | func _RefreshWorkflowTasksRequest_Decode(sr stream.Reader) (*shared.Refr...
function init (line 30008) | func init() {
type AdminService_RefreshWorkflowTasks_Result (line 30087) | type AdminService_RefreshWorkflowTasks_Result struct
method ToWire (line 30109) | func (v *AdminService_RefreshWorkflowTasks_Result) ToWire() (wire.Valu...
method FromWire (line 30174) | func (v *AdminService_RefreshWorkflowTasks_Result) FromWire(w wire.Val...
method Encode (line 30238) | func (v *AdminService_RefreshWorkflowTasks_Result) Encode(sw stream.Wr...
method Decode (line 30317) | func (v *AdminService_RefreshWorkflowTasks_Result) Decode(sr stream.Re...
method String (line 30395) | func (v *AdminService_RefreshWorkflowTasks_Result) String() string {
method Equals (line 30426) | func (v *AdminService_RefreshWorkflowTasks_Result) Equals(rhs *AdminSe...
method MarshalLogObject (line 30450) | func (v *AdminService_RefreshWorkflowTasks_Result) MarshalLogObject(en...
method GetBadRequestError (line 30471) | func (v *AdminService_RefreshWorkflowTasks_Result) GetBadRequestError(...
method IsSetBadRequestError (line 30480) | func (v *AdminService_RefreshWorkflowTasks_Result) IsSetBadRequestErro...
method GetDomainNotActiveError (line 30486) | func (v *AdminService_RefreshWorkflowTasks_Result) GetDomainNotActiveE...
method IsSetDomainNotActiveError (line 30495) | func (v *AdminService_RefreshWorkflowTasks_Result) IsSetDomainNotActiv...
method GetServiceBusyError (line 30501) | func (v *AdminService_RefreshWorkflowTasks_Result) GetServiceBusyError...
method IsSetServiceBusyError (line 30510) | func (v *AdminService_RefreshWorkflowTasks_Result) IsSetServiceBusyErr...
method GetEntityNotExistError (line 30516) | func (v *AdminService_RefreshWorkflowTasks_Result) GetEntityNotExistEr...
method IsSetEntityNotExistError (line 30525) | func (v *AdminService_RefreshWorkflowTasks_Result) IsSetEntityNotExist...
method MethodName (line 30533) | func (v *AdminService_RefreshWorkflowTasks_Result) MethodName() string {
method EnvelopeType (line 30540) | func (v *AdminService_RefreshWorkflowTasks_Result) EnvelopeType() wire...
type AdminService_RemoveTask_Args (line 30547) | type AdminService_RemoveTask_Args struct
method ToWire (line 30566) | func (v *AdminService_RemoveTask_Args) ToWire() (wire.Value, error) {
method FromWire (line 30609) | func (v *AdminService_RemoveTask_Args) FromWire(w wire.Value) error {
method Encode (line 30632) | func (v *AdminService_RemoveTask_Args) Encode(sw stream.Writer) error {
method Decode (line 30663) | func (v *AdminService_RemoveTask_Args) Decode(sr stream.Reader) error {
method String (line 30706) | func (v *AdminService_RemoveTask_Args) String() string {
method Equals (line 30725) | func (v *AdminService_RemoveTask_Args) Equals(rhs *AdminService_Remove...
method MarshalLogObject (line 30740) | func (v *AdminService_RemoveTask_Args) MarshalLogObject(enc zapcore.Ob...
method GetRequest (line 30752) | func (v *AdminService_RemoveTask_Args) GetRequest() (o *shared.RemoveT...
method IsSetRequest (line 30761) | func (v *AdminService_RemoveTask_Args) IsSetRequest() bool {
method MethodName (line 30769) | func (v *AdminService_RemoveTask_Args) MethodName() string {
method EnvelopeType (line 30776) | func (v *AdminService_RemoveTask_Args) EnvelopeType() wire.EnvelopeType {
function _RemoveTaskRequest_Read (line 30586) | func _RemoveTaskRequest_Read(w wire.Value) (*shared.RemoveTaskRequest, e...
function _RemoveTaskRequest_Decode (line 30652) | func _RemoveTaskRequest_Decode(sr stream.Reader) (*shared.RemoveTaskRequ...
function init (line 30826) | func init() {
type AdminService_RemoveTask_Result (line 30894) | type AdminService_RemoveTask_Result struct
method ToWire (line 30915) | func (v *AdminService_RemoveTask_Result) ToWire() (wire.Value, error) {
method FromWire (line 30972) | func (v *AdminService_RemoveTask_Result) FromWire(w wire.Value) error {
method Encode (line 31025) | func (v *AdminService_RemoveTask_Result) Encode(sw stream.Writer) error {
method Decode (line 31089) | func (v *AdminService_RemoveTask_Result) Decode(sr stream.Reader) error {
method String (line 31158) | func (v *AdminService_RemoveTask_Result) String() string {
method Equals (line 31185) | func (v *AdminService_RemoveTask_Result) Equals(rhs *AdminService_Remo...
method MarshalLogObject (line 31206) | func (v *AdminService_RemoveTask_Result) MarshalLogObject(enc zapcore....
method GetBadRequestError (line 31224) | func (v *AdminService_RemoveTask_Result) GetBadRequestError() (o *shar...
method IsSetBadRequestError (line 31233) | func (v *AdminService_RemoveTask_Result) IsSetBadRequestError() bool {
method GetInternalServiceError (line 31239) | func (v *AdminService_RemoveTask_Result) GetInternalServiceError() (o ...
method IsSetInternalServiceError (line 31248) | func (v *AdminService_RemoveTask_Result) IsSetInternalServiceError() b...
method GetAccessDeniedError (line 31254) | func (v *AdminService_RemoveTask_Result) GetAccessDeniedError() (o *sh...
method IsSetAccessDeniedError (line 31263) | func (v *AdminService_RemoveTask_Result) IsSetAccessDeniedError() bool {
method MethodName (line 31271) | func (v *AdminService_RemoveTask_Result) MethodName() string {
method EnvelopeType (line 31278) | func (v *AdminService_RemoveTask_Result) EnvelopeType() wire.EnvelopeT...
type AdminService_ResendReplicationTasks_Args (line 31285) | type AdminService_ResendReplicationTasks_Args struct
method ToWire (line 31304) | func (v *AdminService_ResendReplicationTasks_Args) ToWire() (wire.Valu...
method FromWire (line 31347) | func (v *AdminService_ResendReplicationTasks_Args) FromWire(w wire.Val...
method Encode (line 31370) | func (v *AdminService_ResendReplicationTasks_Args) Encode(sw stream.Wr...
method Decode (line 31401) | func (v *AdminService_ResendReplicationTasks_Args) Decode(sr stream.Re...
method String (line 31444) | func (v *AdminService_ResendReplicationTasks_Args) String() string {
method Equals (line 31463) | func (v *AdminService_ResendReplicationTasks_Args) Equals(rhs *AdminSe...
method MarshalLogObject (line 31478) | func (v *AdminService_ResendReplicationTasks_Args) MarshalLogObject(en...
method GetRequest (line 31490) | func (v *AdminService_ResendReplicationTasks_Args) GetRequest() (o *Re...
method IsSetRequest (line 31499) | func (v *AdminService_ResendReplicationTasks_Args) IsSetRequest() bool {
method MethodName (line 31507) | func (v *AdminService_ResendReplicationTasks_Args) MethodName() string {
method EnvelopeType (line 31514) | func (v *AdminService_ResendReplicationTasks_Args) EnvelopeType() wire...
function _ResendReplicationTasksRequest_Read (line 31324) | func _ResendReplicationTasksRequest_Read(w wire.Value) (*ResendReplicati...
function _ResendReplicationTasksRequest_Decode (line 31390) | func _ResendReplicationTasksRequest_Decode(sr stream.Reader) (*ResendRep...
function init (line 31564) | func init() {
type AdminService_ResendReplicationTasks_Result (line 31632) | type AdminService_ResendReplicationTasks_Result struct
method ToWire (line 31653) | func (v *AdminService_ResendReplicationTasks_Result) ToWire() (wire.Va...
method FromWire (line 31710) | func (v *AdminService_ResendReplicationTasks_Result) FromWire(w wire.V...
method Encode (line 31763) | func (v *AdminService_ResendReplicationTasks_Result) Encode(sw stream....
method Decode (line 31827) | func (v *AdminService_ResendReplicationTasks_Result) Decode(sr stream....
method String (line 31896) | func (v *AdminService_ResendReplicationTasks_Result) String() string {
method Equals (line 31923) | func (v *AdminService_ResendReplicationTasks_Result) Equals(rhs *Admin...
method MarshalLogObject (line 31944) | func (v *AdminService_ResendReplicationTasks_Result) MarshalLogObject(...
method GetBadRequestError (line 31962) | func (v *AdminService_ResendReplicationTasks_Result) GetBadRequestErro...
method IsSetBadRequestError (line 31971) | func (v *AdminService_ResendReplicationTasks_Result) IsSetBadRequestEr...
method GetServiceBusyError (line 31977) | func (v *AdminService_ResendReplicationTasks_Result) GetServiceBusyErr...
method IsSetServiceBusyError (line 31986) | func (v *AdminService_ResendReplicationTasks_Result) IsSetServiceBusyE...
method GetEntityNotExistError (line 31992) | func (v *AdminService_ResendReplicationTasks_Result) GetEntityNotExist...
method IsSetEntityNotExistError (line 32001) | func (v *AdminService_ResendReplicationTasks_Result) IsSetEntityNotExi...
method MethodName (line 32009) | func (v *AdminService_ResendReplicationTasks_Result) MethodName() stri...
method EnvelopeType (line 32016) | func (v *AdminService_ResendReplicationTasks_Result) EnvelopeType() wi...
type AdminService_ResetQueue_Args (line 32023) | type AdminService_ResetQueue_Args struct
method ToWire (line 32042) | func (v *AdminService_ResetQueue_Args) ToWire() (wire.Value, error) {
method FromWire (line 32085) | func (v *AdminService_ResetQueue_Args) FromWire(w wire.Value) error {
method Encode (line 32108) | func (v *AdminService_ResetQueue_Args) Encode(sw stream.Writer) error {
method Decode (line 32139) | func (v *AdminService_ResetQueue_Args) Decode(sr stream.Reader) error {
method String (line 32182) | func (v *AdminService_ResetQueue_Args) String() string {
method Equals (line 32201) | func (v *AdminService_ResetQueue_Args) Equals(rhs *AdminService_ResetQ...
method MarshalLogObject (line 32216) | func (v *AdminService_ResetQueue_Args) MarshalLogObject(enc zapcore.Ob...
method GetRequest (line 32228) | func (v *AdminService_ResetQueue_Args) GetRequest() (o *shared.ResetQu...
method IsSetRequest (line 32237) | func (v *AdminService_ResetQueue_Args) IsSetRequest() bool {
method MethodName (line 32245) | func (v *AdminService_ResetQueue_Args) MethodName() string {
method EnvelopeType (line 32252) | func (v *AdminService_ResetQueue_Args) EnvelopeType() wire.EnvelopeType {
function _ResetQueueRequest_Read (line 32062) | func _ResetQueueRequest_Read(w wire.Value) (*shared.ResetQueueRequest, e...
function _ResetQueueRequest_Decode (line 32128) | func _ResetQueueRequest_Decode(sr stream.Reader) (*shared.ResetQueueRequ...
function init (line 32302) | func init() {
type AdminService_ResetQueue_Result (line 32370) | type AdminService_ResetQueue_Result struct
method ToWire (line 32391) | func (v *AdminService_ResetQueue_Result) ToWire() (wire.Value, error) {
method FromWire (line 32448) | func (v *AdminService_ResetQueue_Result) FromWire(w wire.Value) error {
method Encode (line 32501) | func (v *AdminService_ResetQueue_Result) Encode(sw stream.Writer) error {
method Decode (line 32565) | func (v *AdminService_ResetQueue_Result) Decode(sr stream.Reader) error {
method String (line 32634) | func (v *AdminService_ResetQueue_Result) String() string {
method Equals (line 32661) | func (v *AdminService_ResetQueue_Result) Equals(rhs *AdminService_Rese...
method MarshalLogObject (line 32682) | func (v *AdminService_ResetQueue_Result) MarshalLogObject(enc zapcore....
method GetBadRequestError (line 32700) | func (v *AdminService_ResetQueue_Result) GetBadRequestError() (o *shar...
method IsSetBadRequestError (line 32709) | func (v *AdminService_ResetQueue_Result) IsSetBadRequestError() bool {
method GetInternalServiceError (line 32715) | func (v *AdminService_ResetQueue_Result) GetInternalServiceError() (o ...
method IsSetInternalServiceError (line 32724) | func (v *AdminService_ResetQueue_Result) IsSetInternalServiceError() b...
method GetAccessDeniedError (line 32730) | func (v *AdminService_ResetQueue_Result) GetAccessDeniedError() (o *sh...
method IsSetAccessDeniedError (line 32739) | func (v *AdminService_ResetQueue_Result) IsSetAccessDeniedError() bool {
method MethodName (line 32747) | func (v *AdminService_ResetQueue_Result) MethodName() string {
method EnvelopeType (line 32754) | func (v *AdminService_ResetQueue_Result) EnvelopeType() wire.EnvelopeT...
type AdminService_RespondCrossClusterTasksCompleted_Args (line 32761) | type AdminService_RespondCrossClusterTasksCompleted_Args struct
method ToWire (line 32780) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) ToWire()...
method FromWire (line 32823) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) FromWire...
method Encode (line 32846) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) Encode(s...
method Decode (line 32877) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) Decode(s...
method String (line 32920) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) String()...
method Equals (line 32939) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) Equals(r...
method MarshalLogObject (line 32954) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) MarshalL...
method GetRequest (line 32966) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) GetReque...
method IsSetRequest (line 32975) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) IsSetReq...
method MethodName (line 32983) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) MethodNa...
method EnvelopeType (line 32990) | func (v *AdminService_RespondCrossClusterTasksCompleted_Args) Envelope...
function _RespondCrossClusterTasksCompletedRequest_Read (line 32800) | func _RespondCrossClusterTasksCompletedRequest_Read(w wire.Value) (*shar...
function _RespondCrossClusterTasksCompletedRequest_Decode (line 32866) | func _RespondCrossClusterTasksCompletedRequest_Decode(sr stream.Reader) ...
function init (line 33039) | func init() {
type AdminService_RespondCrossClusterTasksCompleted_Result (line 33116) | type AdminService_RespondCrossClusterTasksCompleted_Result struct
method ToWire (line 33139) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) ToWire...
method FromWire (line 33210) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) FromWi...
method Encode (line 33274) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) Encode...
method Decode (line 33359) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) Decode...
method String (line 33437) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) String...
method Equals (line 33468) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) Equals...
method MarshalLogObject (line 33492) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) Marsha...
method GetSuccess (line 33513) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) GetSuc...
method IsSetSuccess (line 33522) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) IsSetS...
method GetBadRequestError (line 33528) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) GetBad...
method IsSetBadRequestError (line 33537) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) IsSetB...
method GetInternalServiceError (line 33543) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) GetInt...
method IsSetInternalServiceError (line 33552) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) IsSetI...
method GetServiceBusyError (line 33558) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) GetSer...
method IsSetServiceBusyError (line 33567) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) IsSetS...
method MethodName (line 33575) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) Method...
method EnvelopeType (line 33582) | func (v *AdminService_RespondCrossClusterTasksCompleted_Result) Envelo...
function _RespondCrossClusterTasksCompletedResponse_Read (line 33187) | func _RespondCrossClusterTasksCompletedResponse_Read(w wire.Value) (*sha...
function _RespondCrossClusterTasksCompletedResponse_Decode (line 33348) | func _RespondCrossClusterTasksCompletedResponse_Decode(sr stream.Reader)...
type AdminService_RestoreDynamicConfig_Args (line 33589) | type AdminService_RestoreDynamicConfig_Args struct
method ToWire (line 33608) | func (v *AdminService_RestoreDynamicConfig_Args) ToWire() (wire.Value,...
method FromWire (line 33651) | func (v *AdminService_RestoreDynamicConfig_Args) FromWire(w wire.Value...
method Encode (line 33674) | func (v *AdminService_RestoreDynamicConfig_Args) Encode(sw stream.Writ...
method Decode (line 33705) | func (v *AdminService_RestoreDynamicConfig_Args) Decode(sr stream.Read...
method String (line 33748) | func (v *AdminService_RestoreDynamicConfig_Args) String() string {
method Equals (line 33767) | func (v *AdminService_RestoreDynamicConfig_Args) Equals(rhs *AdminServ...
method MarshalLogObject (line 33782) | func (v *AdminService_RestoreDynamicConfig_Args) MarshalLogObject(enc ...
method GetRequest (line 33794) | func (v *AdminService_RestoreDynamicConfig_Args) GetRequest() (o *Rest...
method IsSetRequest (line 33803) | func (v *AdminService_RestoreDynamicConfig_Args) IsSetRequest() bool {
method MethodName (line 33811) | func (v *AdminService_RestoreDynamicConfig_Args) MethodName() string {
method EnvelopeType (line 33818) | func (v *AdminService_RestoreDynamicConfig_Args) EnvelopeType() wire.E...
function _RestoreDynamicConfigRequest_Read (line 33628) | func _RestoreDynamicConfigRequest_Read(w wire.Value) (*RestoreDynamicCon...
function _RestoreDynamicConfigRequest_Decode (line 33694) | func _RestoreDynamicConfigRequest_Decode(sr stream.Reader) (*RestoreDyna...
function init (line 33868) | func init() {
type AdminService_RestoreDynamicConfig_Result (line 33925) | type AdminService_RestoreDynamicConfig_Result struct
method ToWire (line 33945) | func (v *AdminService_RestoreDynamicConfig_Result) ToWire() (wire.Valu...
method FromWire (line 33994) | func (v *AdminService_RestoreDynamicConfig_Result) FromWire(w wire.Val...
method Encode (line 34036) | func (v *AdminService_RestoreDynamicConfig_Result) Encode(sw stream.Wr...
method Decode (line 34085) | func (v *AdminService_RestoreDynamicConfig_Result) Decode(sr stream.Re...
method String (line 34145) | func (v *AdminService_RestoreDynamicConfig_Result) String() string {
method Equals (line 34168) | func (v *AdminService_RestoreDynamicConfig_Result) Equals(rhs *AdminSe...
method MarshalLogObject (line 34186) | func (v *AdminService_RestoreDynamicConfig_Result) MarshalLogObject(en...
method GetBadRequestError (line 34201) | func (v *AdminService_RestoreDynamicConfig_Result) GetBadRequestError(...
method IsSetBadRequestError (line 34210) | func (v *AdminService_RestoreDynamicConfig_Result) IsSetBadRequestErro...
method GetInternalServiceError (line 34216) | func (v *AdminService_RestoreDynamicConfig_Result) GetInternalServiceE...
method IsSetInternalServiceError (line 34225) | func (v *AdminService_RestoreDynamicConfig_Result) IsSetInternalServic...
method MethodName (line 34233) | func (v *AdminService_RestoreDynamicConfig_Result) MethodName() string {
method EnvelopeType (line 34240) | func (v *AdminService_RestoreDynamicConfig_Result) EnvelopeType() wire...
type AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args (line 34247) | type AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args struct
method ToWire (line 34266) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) ToWi...
method FromWire (line 34309) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) From...
method Encode (line 34332) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Enco...
method Decode (line 34363) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Deco...
method String (line 34406) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Stri...
method Equals (line 34425) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Equa...
method MarshalLogObject (line 34440) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Mars...
method GetRequest (line 34452) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) GetR...
method IsSetRequest (line 34461) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) IsSe...
method MethodName (line 34469) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Meth...
method EnvelopeType (line 34476) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Args) Enve...
function _UpdateDomainAsyncWorkflowConfiguratonRequest_Read (line 34286) | func _UpdateDomainAsyncWorkflowConfiguratonRequest_Read(w wire.Value) (*...
function _UpdateDomainAsyncWorkflowConfiguratonRequest_Decode (line 34352) | func _UpdateDomainAsyncWorkflowConfiguratonRequest_Decode(sr stream.Read...
function init (line 34525) | func init() {
type AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result (line 34580) | type AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result struct
method ToWire (line 34601) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) To...
method FromWire (line 34656) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Fr...
method Encode (line 34698) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) En...
method Decode (line 34753) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) De...
method String (line 34813) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) St...
method Equals (line 34836) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Eq...
method MarshalLogObject (line 34854) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Ma...
method GetSuccess (line 34869) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Ge...
method IsSetSuccess (line 34878) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Is...
method GetBadRequestError (line 34884) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Ge...
method IsSetBadRequestError (line 34893) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Is...
method MethodName (line 34901) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) Me...
method EnvelopeType (line 34908) | func (v *AdminService_UpdateDomainAsyncWorkflowConfiguraton_Result) En...
function _UpdateDomainAsyncWorkflowConfiguratonResponse_Read (line 34633) | func _UpdateDomainAsyncWorkflowConfiguratonResponse_Read(w wire.Value) (...
function _UpdateDomainAsyncWorkflowConfiguratonResponse_Decode (line 34742) | func _UpdateDomainAsyncWorkflowConfiguratonResponse_Decode(sr stream.Rea...
type AdminService_UpdateDomainIsolationGroups_Args (line 34915) | type AdminService_UpdateDomainIsolationGroups_Args struct
method ToWire (line 34934) | func (v *AdminService_UpdateDomainIsolationGroups_Args) ToWire() (wire...
method FromWire (line 34977) | func (v *AdminService_UpdateDomainIsolationGroups_Args) FromWire(w wir...
method Encode (line 35000) | func (v *AdminService_UpdateDomainIsolationGroups_Args) Encode(sw stre...
method Decode (line 35031) | func (v *AdminService_UpdateDomainIsolationGroups_Args) Decode(sr stre...
method String (line 35074) | func (v *AdminService_UpdateDomainIsolationGroups_Args) String() string {
method Equals (line 35093) | func (v *AdminService_UpdateDomainIsolationGroups_Args) Equals(rhs *Ad...
method MarshalLogObject (line 35108) | func (v *AdminService_UpdateDomainIsolationGroups_Args) MarshalLogObje...
method GetRequest (line 35120) | func (v *AdminService_UpdateDomainIsolationGroups_Args) GetRequest() (...
method IsSetRequest (line 35129) | func (v *AdminService_UpdateDomainIsolationGroups_Args) IsSetRequest()...
method MethodName (line 35137) | func (v *AdminService_UpdateDomainIsolationGroups_Args) MethodName() s...
method EnvelopeType (line 35144) | func (v *AdminService_UpdateDomainIsolationGroups_Args) EnvelopeType()...
function _UpdateDomainIsolationGroupsRequest_Read (line 34954) | func _UpdateDomainIsolationGroupsRequest_Read(w wire.Value) (*UpdateDoma...
function _UpdateDomainIsolationGroupsRequest_Decode (line 35020) | func _UpdateDomainIsolationGroupsRequest_Decode(sr stream.Reader) (*Upda...
function init (line 35193) | func init() {
type AdminService_UpdateDomainIsolationGroups_Result (line 35248) | type AdminService_UpdateDomainIsolationGroups_Result struct
method ToWire (line 35269) | func (v *AdminService_UpdateDomainIsolationGroups_Result) ToWire() (wi...
method FromWire (line 35324) | func (v *AdminService_UpdateDomainIsolationGroups_Result) FromWire(w w...
method Encode (line 35366) | func (v *AdminService_UpdateDomainIsolationGroups_Result) Encode(sw st...
method Decode (line 35421) | func (v *AdminService_UpdateDomainIsolationGroups_Result) Decode(sr st...
method String (line 35481) | func (v *AdminService_UpdateDomainIsolationGroups_Result) String() str...
method Equals (line 35504) | func (v *AdminService_UpdateDomainIsolationGroups_Result) Equals(rhs *...
method MarshalLogObject (line 35522) | func (v *AdminService_UpdateDomainIsolationGroups_Result) MarshalLogOb...
method GetSuccess (line 35537) | func (v *AdminService_UpdateDomainIsolationGroups_Result) GetSuccess()...
method IsSetSuccess (line 35546) | func (v *AdminService_UpdateDomainIsolationGroups_Result) IsSetSuccess...
method GetBadRequestError (line 35552) | func (v *AdminService_UpdateDomainIsolationGroups_Result) GetBadReques...
method IsSetBadRequestError (line 35561) | func (v *AdminService_UpdateDomainIsolationGroups_Result) IsSetBadRequ...
method MethodName (line 35569) | func (v *AdminService_UpdateDomainIsolationGroups_Result) MethodName()...
method EnvelopeType (line 35576) | func (v *AdminService_UpdateDomainIsolationGroups_Result) EnvelopeType...
function _UpdateDomainIsolationGroupsResponse_Read (line 35301) | func _UpdateDomainIsolationGroupsResponse_Read(w wire.Value) (*UpdateDom...
function _UpdateDomainIsolationGroupsResponse_Decode (line 35410) | func _UpdateDomainIsolationGroupsResponse_Decode(sr stream.Reader) (*Upd...
type AdminService_UpdateDynamicConfig_Args (line 35583) | type AdminService_UpdateDynamicConfig_Args struct
method ToWire (line 35602) | func (v *AdminService_UpdateDynamicConfig_Args) ToWire() (wire.Value, ...
method FromWire (line 35645) | func (v *AdminService_UpdateDynamicConfig_Args) FromWire(w wire.Value)...
method Encode (line 35668) | func (v *AdminService_UpdateDynamicConfig_Args) Encode(sw stream.Write...
method Decode (line 35699) | func (v *AdminService_UpdateDynamicConfig_Args) Decode(sr stream.Reade...
method String (line 35742) | func (v *AdminService_UpdateDynamicConfig_Args) String() string {
method Equals (line 35761) | func (v *AdminService_UpdateDynamicConfig_Args) Equals(rhs *AdminServi...
method MarshalLogObject (line 35776) | func (v *AdminService_UpdateDynamicConfig_Args) MarshalLogObject(enc z...
method GetRequest (line 35788) | func (v *AdminService_UpdateDynamicConfig_Args) GetRequest() (o *Updat...
method IsSetRequest (line 35797) | func (v *AdminService_UpdateDynamicConfig_Args) IsSetRequest() bool {
method MethodName (line 35805) | func (v *AdminService_UpdateDynamicConfig_Args) MethodName() string {
method EnvelopeType (line 35812) | func (v *AdminService_UpdateDynamicConfig_Args) EnvelopeType() wire.En...
function _UpdateDynamicConfigRequest_Read (line 35622) | func _UpdateDynamicConfigRequest_Read(w wire.Value) (*UpdateDynamicConfi...
function _UpdateDynamicConfigRequest_Decode (line 35688) | func _UpdateDynamicConfigRequest_Decode(sr stream.Reader) (*UpdateDynami...
function init (line 35862) | func init() {
type AdminService_UpdateDynamicConfig_Result (line 35919) | type AdminService_UpdateDynamicConfig_Result struct
method ToWire (line 35939) | func (v *AdminService_UpdateDynamicConfig_Result) ToWire() (wire.Value...
method FromWire (line 35988) | func (v *AdminService_UpdateDynamicConfig_Result) FromWire(w wire.Valu...
method Encode (line 36030) | func (v *AdminService_UpdateDynamicConfig_Result) Encode(sw stream.Wri...
method Decode (line 36079) | func (v *AdminService_UpdateDynamicConfig_Result) Decode(sr stream.Rea...
method String (line 36139) | func (v *AdminService_UpdateDynamicConfig_Result) String() string {
method Equals (line 36162) | func (v *AdminService_UpdateDynamicConfig_Result) Equals(rhs *AdminSer...
method MarshalLogObject (line 36180) | func (v *AdminService_UpdateDynamicConfig_Result) MarshalLogObject(enc...
method GetBadRequestError (line 36195) | func (v *AdminService_UpdateDynamicConfig_Result) GetBadRequestError()...
method IsSetBadRequestError (line 36204) | func (v *AdminService_UpdateDynamicConfig_Result) IsSetBadRequestError...
method GetInternalServiceError (line 36210) | func (v *AdminService_UpdateDynamicConfig_Result) GetInternalServiceEr...
method IsSetInternalServiceError (line 36219) | func (v *AdminService_UpdateDynamicConfig_Result) IsSetInternalService...
method MethodName (line 36227) | func (v *AdminService_UpdateDynamicConfig_Result) MethodName() string {
method EnvelopeType (line 36234) | func (v *AdminService_UpdateDynamicConfig_Result) EnvelopeType() wire....
type AdminService_UpdateGlobalIsolationGroups_Args (line 36241) | type AdminService_UpdateGlobalIsolationGroups_Args struct
method ToWire (line 36260) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) ToWire() (wire...
method FromWire (line 36303) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) FromWire(w wir...
method Encode (line 36326) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) Encode(sw stre...
method Decode (line 36357) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) Decode(sr stre...
method String (line 36400) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) String() string {
method Equals (line 36419) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) Equals(rhs *Ad...
method MarshalLogObject (line 36434) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) MarshalLogObje...
method GetRequest (line 36446) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) GetRequest() (...
method IsSetRequest (line 36455) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) IsSetRequest()...
method MethodName (line 36463) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) MethodName() s...
method EnvelopeType (line 36470) | func (v *AdminService_UpdateGlobalIsolationGroups_Args) EnvelopeType()...
function _UpdateGlobalIsolationGroupsRequest_Read (line 36280) | func _UpdateGlobalIsolationGroupsRequest_Read(w wire.Value) (*UpdateGlob...
function _UpdateGlobalIsolationGroupsRequest_Decode (line 36346) | func _UpdateGlobalIsolationGroupsRequest_Decode(sr stream.Reader) (*Upda...
function init (line 36519) | func init() {
type AdminService_UpdateGlobalIsolationGroups_Result (line 36574) | type AdminService_UpdateGlobalIsolationGroups_Result struct
method ToWire (line 36595) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) ToWire() (wi...
method FromWire (line 36650) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) FromWire(w w...
method Encode (line 36692) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) Encode(sw st...
method Decode (line 36747) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) Decode(sr st...
method String (line 36807) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) String() str...
method Equals (line 36830) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) Equals(rhs *...
method MarshalLogObject (line 36848) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) MarshalLogOb...
method GetSuccess (line 36863) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) GetSuccess()...
method IsSetSuccess (line 36872) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) IsSetSuccess...
method GetBadRequestError (line 36878) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) GetBadReques...
method IsSetBadRequestError (line 36887) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) IsSetBadRequ...
method MethodName (line 36895) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) MethodName()...
method EnvelopeType (line 36902) | func (v *AdminService_UpdateGlobalIsolationGroups_Result) EnvelopeType...
function _UpdateGlobalIsolationGroupsResponse_Read (line 36627) | func _UpdateGlobalIsolationGroupsResponse_Read(w wire.Value) (*UpdateGlo...
function _UpdateGlobalIsolationGroupsResponse_Decode (line 36736) | func _UpdateGlobalIsolationGroupsResponse_Decode(sr stream.Reader) (*Upd...
FILE: .gen/go/admin/adminserviceclient/client.go
type Interface (line 21) | type Interface interface
function New (line 223) | func New(c transport.ClientConfig, opts ...thrift.ClientOption) Interface {
function init (line 236) | func init() {
type client (line 244) | type client struct
method AddSearchAttribute (line 249) | func (c client) AddSearchAttribute(
method CloseShard (line 277) | func (c client) CloseShard(
method DeleteWorkflow (line 305) | func (c client) DeleteWorkflow(
method DescribeCluster (line 333) | func (c client) DescribeCluster(
method DescribeHistoryHost (line 360) | func (c client) DescribeHistoryHost(
method DescribeQueue (line 388) | func (c client) DescribeQueue(
method DescribeShardDistribution (line 416) | func (c client) DescribeShardDistribution(
method DescribeWorkflowExecution (line 444) | func (c client) DescribeWorkflowExecution(
method GetCrossClusterTasks (line 472) | func (c client) GetCrossClusterTasks(
method GetDLQReplicationMessages (line 500) | func (c client) GetDLQReplicationMessages(
method GetDomainAsyncWorkflowConfiguraton (line 528) | func (c client) GetDomainAsyncWorkflowConfiguraton(
method GetDomainIsolationGroups (line 556) | func (c client) GetDomainIsolationGroups(
method GetDomainReplicationMessages (line 584) | func (c client) GetDomainReplicationMessages(
method GetDynamicConfig (line 612) | func (c client) GetDynamicConfig(
method GetGlobalIsolationGroups (line 640) | func (c client) GetGlobalIsolationGroups(
method GetReplicationMessages (line 668) | func (c client) GetReplicationMessages(
method GetWorkflowExecutionRawHistoryV2 (line 696) | func (c client) GetWorkflowExecutionRawHistoryV2(
method ListDynamicConfig (line 724) | func (c client) ListDynamicConfig(
method MaintainCorruptWorkflow (line 752) | func (c client) MaintainCorruptWorkflow(
method MergeDLQMessages (line 780) | func (c client) MergeDLQMessages(
method PurgeDLQMessages (line 808) | func (c client) PurgeDLQMessages(
method ReadDLQMessages (line 836) | func (c client) ReadDLQMessages(
method ReapplyEvents (line 864) | func (c client) ReapplyEvents(
method RefreshWorkflowTasks (line 892) | func (c client) RefreshWorkflowTasks(
method RemoveTask (line 920) | func (c client) RemoveTask(
method ResendReplicationTasks (line 948) | func (c client) ResendReplicationTasks(
method ResetQueue (line 976) | func (c client) ResetQueue(
method RespondCrossClusterTasksCompleted (line 1004) | func (c client) RespondCrossClusterTasksCompleted(
method RestoreDynamicConfig (line 1032) | func (c client) RestoreDynamicConfig(
method UpdateDomainAsyncWorkflowConfiguraton (line 1060) | func (c client) UpdateDomainAsyncWorkflowConfiguraton(
method UpdateDomainIsolationGroups (line 1088) | func (c client) UpdateDomainIsolationGroups(
method UpdateDynamicConfig (line 1116) | func (c client) UpdateDynamicConfig(
method UpdateGlobalIsolationGroups (line 1144) | func (c client) UpdateGlobalIsolationGroups(
FILE: .gen/go/admin/adminservicefx/client.go
type Params (line 17) | type Params struct
type Result (line 26) | type Result struct
function Client (line 43) | func Client(name string, opts ...thrift.ClientOption) interface{} {
FILE: .gen/go/admin/adminservicefx/server.go
type ServerParams (line 15) | type ServerParams struct
type ServerResult (line 26) | type ServerResult struct
function Server (line 41) | func Server(opts ...thrift.RegisterOption) interface{} {
FILE: .gen/go/admin/adminserviceserver/server.go
type Interface (line 21) | type Interface interface
function New (line 192) | func New(impl Interface, opts ...thrift.RegisterOption) []transport.Proc...
type handler (line 601) | type handler struct
method AddSearchAttribute (line 607) | func (h handler) AddSearchAttribute(ctx context.Context, body wire.Val...
method CloseShard (line 637) | func (h handler) CloseShard(ctx context.Context, body wire.Value) (thr...
method DeleteWorkflow (line 667) | func (h handler) DeleteWorkflow(ctx context.Context, body wire.Value) ...
method DescribeCluster (line 697) | func (h handler) DescribeCluster(ctx context.Context, body wire.Value)...
method DescribeHistoryHost (line 727) | func (h handler) DescribeHistoryHost(ctx context.Context, body wire.Va...
method DescribeQueue (line 757) | func (h handler) DescribeQueue(ctx context.Context, body wire.Value) (...
method DescribeShardDistribution (line 787) | func (h handler) DescribeShardDistribution(ctx context.Context, body w...
method DescribeWorkflowExecution (line 817) | func (h handler) DescribeWorkflowExecution(ctx context.Context, body w...
method GetCrossClusterTasks (line 847) | func (h handler) GetCrossClusterTasks(ctx context.Context, body wire.V...
method GetDLQReplicationMessages (line 877) | func (h handler) GetDLQReplicationMessages(ctx context.Context, body w...
method GetDomainAsyncWorkflowConfiguraton (line 907) | func (h handler) GetDomainAsyncWorkflowConfiguraton(ctx context.Contex...
method GetDomainIsolationGroups (line 937) | func (h handler) GetDomainIsolationGroups(ctx context.Context, body wi...
method GetDomainReplicationMessages (line 967) | func (h handler) GetDomainReplicationMessages(ctx context.Context, bod...
method GetDynamicConfig (line 997) | func (h handler) GetDynamicConfig(ctx context.Context, body wire.Value...
method GetGlobalIsolationGroups (line 1027) | func (h handler) GetGlobalIsolationGroups(ctx context.Context, body wi...
method GetReplicationMessages (line 1057) | func (h handler) GetReplicationMessages(ctx context.Context, body wire...
method GetWorkflowExecutionRawHistoryV2 (line 1087) | func (h handler) GetWorkflowExecutionRawHistoryV2(ctx context.Context,...
method ListDynamicConfig (line 1117) | func (h handler) ListDynamicConfig(ctx context.Context, body wire.Valu...
method MaintainCorruptWorkflow (line 1147) | func (h handler) MaintainCorruptWorkflow(ctx context.Context, body wir...
method MergeDLQMessages (line 1177) | func (h handler) MergeDLQMessages(ctx context.Context, body wire.Value...
method PurgeDLQMessages (line 1207) | func (h handler) PurgeDLQMessages(ctx context.Context, body wire.Value...
method ReadDLQMessages (line 1237) | func (h handler) ReadDLQMessages(ctx context.Context, body wire.Value)...
method ReapplyEvents (line 1267) | func (h handler) ReapplyEvents(ctx context.Context, body wire.Value) (...
method RefreshWorkflowTasks (line 1297) | func (h handler) RefreshWorkflowTasks(ctx context.Context, body wire.V...
method RemoveTask (line 1327) | func (h handler) RemoveTask(ctx context.Context, body wire.Value) (thr...
method ResendReplicationTasks (line 1357) | func (h handler) ResendReplicationTasks(ctx context.Context, body wire...
method ResetQueue (line 1387) | func (h handler) ResetQueue(ctx context.Context, body wire.Value) (thr...
method RespondCrossClusterTasksCompleted (line 1417) | func (h handler) RespondCrossClusterTasksCompleted(ctx context.Context...
method RestoreDynamicConfig (line 1447) | func (h handler) RestoreDynamicConfig(ctx context.Context, body wire.V...
method UpdateDomainAsyncWorkflowConfiguraton (line 1477) | func (h handler) UpdateDomainAsyncWorkflowConfiguraton(ctx context.Con...
method UpdateDomainIsolationGroups (line 1507) | func (h handler) UpdateDomainIsolationGroups(ctx context.Context, body...
method UpdateDynamicConfig (line 1537) | func (h handler) UpdateDynamicConfig(ctx context.Context, body wire.Va...
method UpdateGlobalIsolationGroups (line 1567) | func (h handler) UpdateGlobalIsolationGroups(ctx context.Context, body...
type yarpcErrorNamer (line 603) | type yarpcErrorNamer interface
type yarpcErrorCoder (line 605) | type yarpcErrorCoder interface
type addsearchattribute_NoWireHandler (line 1597) | type addsearchattribute_NoWireHandler struct
method HandleNoWire (line 1599) | func (h addsearchattribute_NoWireHandler) HandleNoWire(ctx context.Con...
type closeshard_NoWireHandler (line 1634) | type closeshard_NoWireHandler struct
method HandleNoWire (line 1636) | func (h closeshard_NoWireHandler) HandleNoWire(ctx context.Context, nw...
type deleteworkflow_NoWireHandler (line 1671) | type deleteworkflow_NoWireHandler struct
method HandleNoWire (line 1673) | func (h deleteworkflow_NoWireHandler) HandleNoWire(ctx context.Context...
type describecluster_NoWireHandler (line 1708) | type describecluster_NoWireHandler struct
method HandleNoWire (line 1710) | func (h describecluster_NoWireHandler) HandleNoWire(ctx context.Contex...
type describehistoryhost_NoWireHandler (line 1745) | type describehistoryhost_NoWireHandler struct
method HandleNoWire (line 1747) | func (h describehistoryhost_NoWireHandler) HandleNoWire(ctx context.Co...
type describequeue_NoWireHandler (line 1782) | type describequeue_NoWireHandler struct
method HandleNoWire (line 1784) | func (h describequeue_NoWireHandler) HandleNoWire(ctx context.Context,...
type describesharddistribution_NoWireHandler (line 1819) | type describesharddistribution_NoWireHandler struct
method HandleNoWire (line 1821) | func (h describesharddistribution_NoWireHandler) HandleNoWire(ctx cont...
type describeworkflowexecution_NoWireHandler (line 1856) | type describeworkflowexecution_NoWireHandler struct
method HandleNoWire (line 1858) | func (h describeworkflowexecution_NoWireHandler) HandleNoWire(ctx cont...
type getcrossclustertasks_NoWireHandler (line 1893) | type getcrossclustertasks_NoWireHandler struct
method HandleNoWire (line 1895) | func (h getcrossclustertasks_NoWireHandler) HandleNoWire(ctx context.C...
type getdlqreplicationmessages_NoWireHandler (line 1930) | type getdlqreplicationmessages_NoWireHandler struct
method HandleNoWire (line 1932) | func (h getdlqreplicationmessages_NoWireHandler) HandleNoWire(ctx cont...
type getdomainasyncworkflowconfiguraton_NoWireHandler (line 1967) | type getdomainasyncworkflowconfiguraton_NoWireHandler struct
method HandleNoWire (line 1969) | func (h getdomainasyncworkflowconfiguraton_NoWireHandler) HandleNoWire...
type getdomainisolationgroups_NoWireHandler (line 2004) | type getdomainisolationgroups_NoWireHandler struct
method HandleNoWire (line 2006) | func (h getdomainisolationgroups_NoWireHandler) HandleNoWire(ctx conte...
type getdomainreplicationmessages_NoWireHandler (line 2041) | type getdomainreplicationmessages_NoWireHandler struct
method HandleNoWire (line 2043) | func (h getdomainreplicationmessages_NoWireHandler) HandleNoWire(ctx c...
type getdynamicconfig_NoWireHandler (line 2078) | type getdynamicconfig_NoWireHandler struct
method HandleNoWire (line 2080) | func (h getdynamicconfig_NoWireHandler) HandleNoWire(ctx context.Conte...
type getglobalisolationgroups_NoWireHandler (line 2115) | type getglobalisolationgroups_NoWireHandler struct
method HandleNoWire (line 2117) | func (h getglobalisolationgroups_NoWireHandler) HandleNoWire(ctx conte...
type getreplicationmessages_NoWireHandler (line 2152) | type getreplicationmessages_NoWireHandler struct
method HandleNoWire (line 2154) | func (h getreplicationmessages_NoWireHandler) HandleNoWire(ctx context...
type getworkflowexecutionrawhistoryv2_NoWireHandler (line 2189) | type getworkflowexecutionrawhistoryv2_NoWireHandler struct
method HandleNoWire (line 2191) | func (h getworkflowexecutionrawhistoryv2_NoWireHandler) HandleNoWire(c...
type listdynamicconfig_NoWireHandler (line 2226) | type listdynamicconfig_NoWireHandler struct
method HandleNoWire (line 2228) | func (h listdynamicconfig_NoWireHandler) HandleNoWire(ctx context.Cont...
type maintaincorruptworkflow_NoWireHandler (line 2263) | type maintaincorruptworkflow_NoWireHandler struct
method HandleNoWire (line 2265) | func (h maintaincorruptworkflow_NoWireHandler) HandleNoWire(ctx contex...
type mergedlqmessages_NoWireHandler (line 2300) | type mergedlqmessages_NoWireHandler struct
method HandleNoWire (line 2302) | func (h mergedlqmessages_NoWireHandler) HandleNoWire(ctx context.Conte...
type purgedlqmessages_NoWireHandler (line 2337) | type purgedlqmessages_NoWireHandler struct
method HandleNoWire (line 2339) | func (h purgedlqmessages_NoWireHandler) HandleNoWire(ctx context.Conte...
type readdlqmessages_NoWireHandler (line 2374) | type readdlqmessages_NoWireHandler struct
method HandleNoWire (line 2376) | func (h readdlqmessages_NoWireHandler) HandleNoWire(ctx context.Contex...
type reapplyevents_NoWireHandler (line 2411) | type reapplyevents_NoWireHandler struct
method HandleNoWire (line 2413) | func (h reapplyevents_NoWireHandler) HandleNoWire(ctx context.Context,...
type refreshworkflowtasks_NoWireHandler (line 2448) | type refreshworkflowtasks_NoWireHandler struct
method HandleNoWire (line 2450) | func (h refreshworkflowtasks_NoWireHandler) HandleNoWire(ctx context.C...
type removetask_NoWireHandler (line 2485) | type removetask_NoWireHandler struct
method HandleNoWire (line 2487) | func (h removetask_NoWireHandler) HandleNoWire(ctx context.Context, nw...
type resendreplicationtasks_NoWireHandler (line 2522) | type resendreplicationtasks_NoWireHandler struct
method HandleNoWire (line 2524) | func (h resendreplicationtasks_NoWireHandler) HandleNoWire(ctx context...
type resetqueue_NoWireHandler (line 2559) | type resetqueue_NoWireHandler struct
method HandleNoWire (line 2561) | func (h resetqueue_NoWireHandler) HandleNoWire(ctx context.Context, nw...
type respondcrossclustertaskscompleted_NoWireHandler (line 2596) | type respondcrossclustertaskscompleted_NoWireHandler struct
method HandleNoWire (line 2598) | func (h respondcrossclustertaskscompleted_NoWireHandler) HandleNoWire(...
type restoredynamicconfig_NoWireHandler (line 2633) | type restoredynamicconfig_NoWireHandler struct
method HandleNoWire (line 2635) | func (h restoredynamiccon
Copy disabled (too large)
Download .json
Condensed preview — 2794 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (45,713K chars).
[
{
"path": ".dockerignore",
"chars": 114,
"preview": ".bin/\n.build/\ncadence\ncadence-server\ncadence-canary\ncadence-bench\ncadence-sql-tool\ncadence-cassandra-tool\nvendor/\n"
},
{
"path": ".envrc",
"chars": 83,
"preview": "# Prepend project binary directories to the PATH\nPATH_add .bin\nPATH_add .build/bin\n"
},
{
"path": ".fossa.yml",
"chars": 957,
"preview": "version: 2\ncli:\n server: https://app.fossa.com\n fetcher: custom\n project: git@github.com:uber/cadence.git\nanalyze:\n "
},
{
"path": ".gen/go/admin/admin.go",
"chars": 1035724,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage admin\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"encod"
},
{
"path": ".gen/go/admin/adminserviceclient/client.go",
"chars": 29842,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage adminserviceclient\n\nimport (\n\tcontext \"context\"\n\trefle"
},
{
"path": ".gen/go/admin/adminservicefx/client.go",
"chars": 1536,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage adminservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\tyarpc \""
},
{
"path": ".gen/go/admin/adminservicefx/doc.go",
"chars": 807,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\n// Package adminservicefx provides better integration for Fx f"
},
{
"path": ".gen/go/admin/adminservicefx/server.go",
"chars": 1280,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage adminservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\ttranspo"
},
{
"path": ".gen/go/admin/adminserviceserver/server.go",
"chars": 94273,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage adminserviceserver\n\nimport (\n\tcontext \"context\"\n\n\tstre"
},
{
"path": ".gen/go/admin/adminservicetest/client.go",
"chars": 35120,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage adminservicetest\n\nimport (\n\tcontext \"context\"\n\n\tgomock"
},
{
"path": ".gen/go/admin/types_yarpc.go",
"chars": 72,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage admin\n"
},
{
"path": ".gen/go/cadence/cadence.go",
"chars": 1594836,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage cadence\n\nimport (\n\terrors \"errors\"\n\tfmt \"fmt\""
},
{
"path": ".gen/go/cadence/types_yarpc.go",
"chars": 74,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage cadence\n"
},
{
"path": ".gen/go/cadence/workflowserviceclient/client.go",
"chars": 43720,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage workflowserviceclient\n\nimport (\n\tcontext \"context\"\n\tre"
},
{
"path": ".gen/go/cadence/workflowservicefx/client.go",
"chars": 1568,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage workflowservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\tyarp"
},
{
"path": ".gen/go/cadence/workflowservicefx/doc.go",
"chars": 846,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\n// Package workflowservicefx provides better integration for F"
},
{
"path": ".gen/go/cadence/workflowservicefx/server.go",
"chars": 1321,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage workflowservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\ttran"
},
{
"path": ".gen/go/cadence/workflowserviceserver/server.go",
"chars": 137275,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage workflowserviceserver\n\nimport (\n\tcontext \"context\"\n\n\ts"
},
{
"path": ".gen/go/cadence/workflowservicetest/client.go",
"chars": 50912,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage workflowservicetest\n\nimport (\n\tcontext \"context\"\n\n\tgom"
},
{
"path": ".gen/go/checksum/checksum.go",
"chars": 44630,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage checksum\n\nimport (\n\tfmt \"fmt\"\n\tstrings \"strin"
},
{
"path": ".gen/go/checksum/types_yarpc.go",
"chars": 75,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage checksum\n"
},
{
"path": ".gen/go/config/config.go",
"chars": 37059,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage config\n\nimport (\n\tfmt \"fmt\"\n\tstrings \"strings"
},
{
"path": ".gen/go/config/types_yarpc.go",
"chars": 73,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage config\n"
},
{
"path": ".gen/go/health/health.go",
"chars": 20291,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage health\n\nimport (\n\terrors \"errors\"\n\tfmt \"fmt\"\n"
},
{
"path": ".gen/go/health/metaclient/client.go",
"chars": 1712,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage metaclient\n\nimport (\n\tcontext \"context\"\n\treflect \"refl"
},
{
"path": ".gen/go/health/metafx/client.go",
"chars": 1457,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage metafx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\tyarpc \"go.uber."
},
{
"path": ".gen/go/health/metafx/doc.go",
"chars": 703,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\n// Package metafx provides better integration for Fx for servi"
},
{
"path": ".gen/go/health/metafx/server.go",
"chars": 1177,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage metafx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\ttransport \"go.u"
},
{
"path": ".gen/go/health/metaserver/server.go",
"chars": 3535,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage metaserver\n\nimport (\n\tcontext \"context\"\n\n\tstream \"go.u"
},
{
"path": ".gen/go/health/metatest/client.go",
"chars": 1880,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage metatest\n\nimport (\n\tcontext \"context\"\n\n\tgomock \"github"
},
{
"path": ".gen/go/health/types_yarpc.go",
"chars": 73,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage health\n"
},
{
"path": ".gen/go/history/history.go",
"chars": 1974368,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage history\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"enc"
},
{
"path": ".gen/go/history/historyserviceclient/client.go",
"chars": 38867,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage historyserviceclient\n\nimport (\n\tcontext \"context\"\n\tref"
},
{
"path": ".gen/go/history/historyservicefx/client.go",
"chars": 1558,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage historyservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\tyarpc"
},
{
"path": ".gen/go/history/historyservicefx/doc.go",
"chars": 833,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\n// Package historyservicefx provides better integration for Fx"
},
{
"path": ".gen/go/history/historyservicefx/server.go",
"chars": 1308,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage historyservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\ttrans"
},
{
"path": ".gen/go/history/historyserviceserver/server.go",
"chars": 123125,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage historyserviceserver\n\nimport (\n\tcontext \"context\"\n\n\tst"
},
{
"path": ".gen/go/history/historyservicetest/client.go",
"chars": 45213,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage historyservicetest\n\nimport (\n\tcontext \"context\"\n\n\tgomo"
},
{
"path": ".gen/go/history/types_yarpc.go",
"chars": 877,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage history\n\nimport yarpcerrors \"go.uber.org/yarpc/yarpcer"
},
{
"path": ".gen/go/indexer/indexer.go",
"chars": 54305,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage indexer\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"enc"
},
{
"path": ".gen/go/indexer/types_yarpc.go",
"chars": 74,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage indexer\n"
},
{
"path": ".gen/go/matching/matching.go",
"chars": 472114,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage matching\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"en"
},
{
"path": ".gen/go/matching/matchingserviceclient/client.go",
"chars": 9811,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage matchingserviceclient\n\nimport (\n\tcontext \"context\"\n\tre"
},
{
"path": ".gen/go/matching/matchingservicefx/client.go",
"chars": 1569,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage matchingservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\tyarp"
},
{
"path": ".gen/go/matching/matchingservicefx/doc.go",
"chars": 846,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\n// Package matchingservicefx provides better integration for F"
},
{
"path": ".gen/go/matching/matchingservicefx/server.go",
"chars": 1322,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage matchingservicefx\n\nimport (\n\tfx \"go.uber.org/fx\"\n\ttran"
},
{
"path": ".gen/go/matching/matchingserviceserver/server.go",
"chars": 29263,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage matchingserviceserver\n\nimport (\n\tcontext \"context\"\n\n\ts"
},
{
"path": ".gen/go/matching/matchingservicetest/client.go",
"chars": 11186,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage matchingservicetest\n\nimport (\n\tcontext \"context\"\n\n\tgom"
},
{
"path": ".gen/go/matching/types_yarpc.go",
"chars": 75,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage matching\n"
},
{
"path": ".gen/go/replicator/replicator.go",
"chars": 273825,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage replicator\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \""
},
{
"path": ".gen/go/replicator/types_yarpc.go",
"chars": 77,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage replicator\n"
},
{
"path": ".gen/go/shadower/shadower.go",
"chars": 77216,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage shadower\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"en"
},
{
"path": ".gen/go/shadower/types_yarpc.go",
"chars": 75,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage shadower\n"
},
{
"path": ".gen/go/shared/shared.go",
"chars": 3190653,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage shared\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"enco"
},
{
"path": ".gen/go/shared/types_yarpc.go",
"chars": 7655,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage shared\n\nimport yarpcerrors \"go.uber.org/yarpc/yarpcerr"
},
{
"path": ".gen/go/sqlblobs/sqlblobs.go",
"chars": 515660,
"preview": "// Code generated by thriftrw v1.29.2. DO NOT EDIT.\n// @generated\n\npackage sqlblobs\n\nimport (\n\tbytes \"bytes\"\n\tbase64 \"en"
},
{
"path": ".gen/go/sqlblobs/types_yarpc.go",
"chars": 75,
"preview": "// Code generated by thriftrw-plugin-yarpc\n// @generated\n\npackage sqlblobs\n"
},
{
"path": ".gen/proto/history/v1/service.pb.go",
"chars": 668601,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/history/v1/service.proto\n\npackage historyv1\n\n"
},
{
"path": ".gen/proto/history/v1/service.pb.yarpc.go",
"chars": 269443,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/history/v1/service.proto\n\npackage history"
},
{
"path": ".gen/proto/indexer/v1/messages.pb.go",
"chars": 27885,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/indexer/v1/messages.proto\n\npackage indexerv1\n"
},
{
"path": ".gen/proto/indexer/v1/messages.pb.yarpc.go",
"chars": 13352,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/indexer/v1/messages.proto\n\npackage indexe"
},
{
"path": ".gen/proto/matching/v1/service.pb.go",
"chars": 294258,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/matching/v1/service.proto\n\npackage matchingv1"
},
{
"path": ".gen/proto/matching/v1/service.pb.yarpc.go",
"chars": 153787,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/matching/v1/service.proto\n\npackage matchi"
},
{
"path": ".gen/proto/sharddistributor/v1/canary.pb.go",
"chars": 16514,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/sharddistributor/v1/canary.proto\n\npackage sha"
},
{
"path": ".gen/proto/sharddistributor/v1/canary.pb.yarpc.go",
"chars": 11551,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/sharddistributor/v1/canary.proto\n\npackage"
},
{
"path": ".gen/proto/sharddistributor/v1/executor.pb.go",
"chars": 44884,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/sharddistributor/v1/executor.proto\n\npackage s"
},
{
"path": ".gen/proto/sharddistributor/v1/executor.pb.yarpc.go",
"chars": 14062,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/sharddistributor/v1/executor.proto\n\npacka"
},
{
"path": ".gen/proto/sharddistributor/v1/service.pb.go",
"chars": 55558,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/sharddistributor/v1/service.proto\n\npackage sh"
},
{
"path": ".gen/proto/sharddistributor/v1/service.pb.yarpc.go",
"chars": 15939,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/sharddistributor/v1/service.proto\n\npackag"
},
{
"path": ".gen/proto/shared/v1/any.pb.go",
"chars": 10239,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/shared/v1/any.proto\n\npackage sharedv1\n\nimport"
},
{
"path": ".gen/proto/shared/v1/any.pb.yarpc.go",
"chars": 1191,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/shared/v1/any.proto\n\npackage sharedv1\n\nva"
},
{
"path": ".gen/proto/shared/v1/error.pb.go",
"chars": 41511,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/shared/v1/error.proto\n\npackage sharedv1\n\nimpo"
},
{
"path": ".gen/proto/shared/v1/error.pb.yarpc.go",
"chars": 14948,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/shared/v1/error.proto\n\npackage sharedv1\n\n"
},
{
"path": ".gen/proto/shared/v1/history.pb.go",
"chars": 17004,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/shared/v1/history.proto\n\npackage sharedv1\n\nim"
},
{
"path": ".gen/proto/shared/v1/history.pb.yarpc.go",
"chars": 63398,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/shared/v1/history.proto\n\npackage sharedv1"
},
{
"path": ".gen/proto/shared/v1/tasklist.pb.go",
"chars": 2916,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/shared/v1/tasklist.proto\n\npackage sharedv1\n\ni"
},
{
"path": ".gen/proto/shared/v1/tasklist.pb.yarpc.go",
"chars": 1349,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/shared/v1/tasklist.proto\n\npackage sharedv"
},
{
"path": ".gen/proto/shared/v1/workflow.pb.go",
"chars": 3601,
"preview": "// Code generated by protoc-gen-gogo. DO NOT EDIT.\n// source: uber/cadence/shared/v1/workflow.proto\n\npackage sharedv1\n\ni"
},
{
"path": ".gen/proto/shared/v1/workflow.pb.yarpc.go",
"chars": 1625,
"preview": "// Code generated by protoc-gen-yarpc-go. DO NOT EDIT.\n// source: uber/cadence/shared/v1/workflow.proto\n\npackage sharedv"
},
{
"path": ".gitar/rules/assign-maintainer-reviewer.md",
"chars": 702,
"preview": "---\ntitle: Assign Maintainer Reviewer for External Contributors\ndescription: Automatically assigns a maintainer to revie"
},
{
"path": ".gitar/rules/issue-linking-required.md",
"chars": 4976,
"preview": "---\ntitle: GitHub Issue Linking Requirement\ndescription: Ensures PRs link to cadence-workflow org issues with smart exem"
},
{
"path": ".gitar/rules/pr-description-quality.md",
"chars": 2923,
"preview": "---\ntitle: PR Description Quality Standards\ndescription: Ensures PR descriptions meet Cadence quality criteria using gui"
},
{
"path": ".gitattributes",
"chars": 29,
"preview": ".gen linguist-generated=true\n"
},
{
"path": ".github/CODEOWNERS",
"chars": 404,
"preview": "# This is a comment.\n# Each line is a file pattern followed by one or more owners.\n# Order is important; the last matchi"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 791,
"preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n### Description\n"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.md",
"chars": 403,
"preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: feature\nassignees: ''\n\n---\n\nUse this"
},
{
"path": ".github/ISSUE_TEMPLATE/help_support.md",
"chars": 464,
"preview": "---\nname: QA/Help/Support\nabout: Please use [Discussion](https://github.com/cadence-workflow/cadence/discussions) or [St"
},
{
"path": ".github/dco.yml",
"chars": 26,
"preview": "require:\n members: false\n"
},
{
"path": ".github/pull_request_guidance.md",
"chars": 2778,
"preview": "<!-- 1-2 line summary of WHAT changed technically:\n- Always link the relevant projects GitHub issue, unless it is a mino"
},
{
"path": ".github/pull_request_template.md",
"chars": 227,
"preview": "<!-- If you are new to contributing or want a refresher, please read ./pull_request_guidance.md -->\n**What changed?**\n\n\n"
},
{
"path": ".github/workflows/breaking_change_pr_template.md",
"chars": 913,
"preview": "**Detailed Description**\n[In-depth description of the changes made to the schema or interfaces, specifying new fields, r"
},
{
"path": ".github/workflows/breaking_change_reminder.yml",
"chars": 1340,
"preview": "name: Workflow for Breaking Change Reminder\non:\n pull_request:\n paths:\n - schema/**\n - client/frontend/int"
},
{
"path": ".github/workflows/ci-checks.yml",
"chars": 15362,
"preview": "name: CI Checks\non: \n push:\n pull_request:\n\njobs:\n idl-submodule-points-to-master:\n name: IDL submodule points to "
},
{
"path": ".github/workflows/codecov-on-master.yml",
"chars": 832,
"preview": "name: Workflow for Codecov integration\non: push\n\njobs:\n codecov:\n if: github.repository == 'cadence-workflow/cadence"
},
{
"path": ".github/workflows/codecov-on-pr.yml",
"chars": 788,
"preview": "name: Workflow for Codecov integration\non: pull_request\n\njobs:\n codecov:\n runs-on: ubuntu-latest\n steps:\n - "
},
{
"path": ".github/workflows/docker_publish.yml",
"chars": 6627,
"preview": "name: Docker Build & Push\n\non:\n pull_request:\n push:\n branches:\n - master\n release:\n types:\n - releas"
},
{
"path": ".github/workflows/issue-validation.yml",
"chars": 10960,
"preview": "name: Issue Validation\n\non:\n issues:\n types:\n - opened\n - edited\n - labeled\n - unlabeled\n -"
},
{
"path": ".github/workflows/replication-simulation.yml",
"chars": 1691,
"preview": "# This workflow runs replication simulaton scenarios via GithubActions matrix strategy.\n# Scenarios are defined in the `"
},
{
"path": ".github/workflows/semantic-pr.yml",
"chars": 988,
"preview": "name: Semantic Pull Request\n\non:\n pull_request:\n types:\n - opened\n - edited\n - synchronize\n\njobs:\n s"
},
{
"path": ".gitignore",
"chars": 578,
"preview": "*.out\n*.test\n*.xml\n*.swp\n.idea/\n*.iml\n*.cov\n*.html\n.gobincache/\n.tmp/\n.vscode/\n.build/\n.bin/\n.cursor/\n/vendor\n/_vendor-*"
},
{
"path": ".gitmodules",
"chars": 108,
"preview": "[submodule \"idls\"]\n\tpath = idls\n\turl = https://github.com/cadence-workflow/cadence-idl.git\n\tbranch = master\n"
},
{
"path": "ADOPTERS.md",
"chars": 3376,
"preview": "# ADOPTERS\n\nThis document lists organizations, companies, and individuals that are using Cadence in production or evalua"
},
{
"path": "CHANGELOG.md",
"chars": 14940,
"preview": "# Changelog\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changel"
},
{
"path": "CLAUDE.md",
"chars": 5057,
"preview": "# Development Guidelines\n\nThis document contains critical information about working with this codebase.\n\n## Core Rules\n\n"
},
{
"path": "CONTRIBUTING.md",
"chars": 17035,
"preview": "# Developing Cadence\n\nThis doc is intended for contributors to Cadence backend. Thanks for considering to contribute ❤️\n"
},
{
"path": "Dockerfile",
"chars": 3710,
"preview": "ARG TARGET=server\n\n# Can be used in case a proxy is necessary\nARG GOPROXY\n\n# Build Cadence binaries\nFROM golang:1.23.4-a"
},
{
"path": "LICENSE",
"chars": 11356,
"preview": " Apache License\n Version 2.0, January 2004\n "
},
{
"path": "MAINTAINERS.md",
"chars": 1081,
"preview": "# Maintainers\n\n- Ender Demirkaya (https://github.com/demirkayaender)\n- Jan Kisel (https://github.com/dkrotx)\n\n- Abhishek"
},
{
"path": "Makefile",
"chars": 43649,
"preview": "# get rid of default behaviors, they're just noise\nMAKEFLAGS += --no-builtin-rules\n.SUFFIXES:\n\n# pipefail is very easy t"
},
{
"path": "NOTICE",
"chars": 1081,
"preview": "Copyright (c) 2025 Uber Technologies, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy"
},
{
"path": "PROPOSALS.md",
"chars": 2629,
"preview": "# Proposing Changes to Cadence\n\n## Introduction\n\nThe design process for changes to Cadence is modeled on the [proposal p"
},
{
"path": "README.md",
"chars": 6782,
"preview": "# Cadence\n[](https"
},
{
"path": "RELEASES.md",
"chars": 2992,
"preview": "# Releases upgrade instruction\n\n## Upgrade to 0.16 and above\n\n**TL;DR:** If your Cadence service is running on or above "
},
{
"path": "bench/README.md",
"chars": 13486,
"preview": "Cadence Bench Tests\n===================\n\nThis README describes how to set up Cadence bench, different types of bench loa"
},
{
"path": "bench/lib/client.go",
"chars": 4213,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/lib/config.go",
"chars": 12016,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/lib/config_test.go",
"chars": 1841,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/lib/context.go",
"chars": 2552,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/lib/metrics.go",
"chars": 5596,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/lib/types.go",
"chars": 1253,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/basic/launchWorkflow.go",
"chars": 13802,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/basic/stressWorkflow.go",
"chars": 3343,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/cancellation/workflow.go",
"chars": 13364,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/common/activities.go",
"chars": 1748,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/common/constants.go",
"chars": 1868,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/common/helpers.go",
"chars": 3125,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/concurrentexec/batchWorkflow.go",
"chars": 6076,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/concurrentexec/launchWorkflow.go",
"chars": 5148,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/cron/workflow.go",
"chars": 11304,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/signal/workflow.go",
"chars": 18782,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/timer/launchWorkflow.go",
"chars": 9584,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/load/timer/timerWorkflow.go",
"chars": 3373,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "bench/worker.go",
"chars": 4594,
"preview": "// Copyright (c) 2017-2021 Uber Technologies Inc.\n\n// Permission is hereby granted, free of charge, to any person obtain"
},
{
"path": "canary/README.md",
"chars": 11356,
"preview": "# Periodical feature health check workflow tools(aka Canary)\n\nThis README describes how to set up Cadence canary, differ"
},
{
"path": "canary/batch.go",
"chars": 7104,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/canary.go",
"chars": 8549,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/cancellation.go",
"chars": 8552,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/client.go",
"chars": 5672,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/common.go",
"chars": 3939,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/concurrentExec.go",
"chars": 3463,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/config.go",
"chars": 4384,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/const.go",
"chars": 5522,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/cron.go",
"chars": 4765,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/crosscluster.go",
"chars": 6706,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/echo.go",
"chars": 3714,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/historyArchival.go",
"chars": 5829,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/localactivity.go",
"chars": 5018,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/metrics.go",
"chars": 5373,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/query.go",
"chars": 4169,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/reset.go",
"chars": 8470,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/retry.go",
"chars": 4080,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/runner.go",
"chars": 5909,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/sanity.go",
"chars": 4721,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/searchAttributes.go",
"chars": 4466,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/signal.go",
"chars": 5869,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/timeout.go",
"chars": 3400,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/visibility.go",
"chars": 4882,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/visibilityArchival.go",
"chars": 6412,
"preview": "// Copyright (c) 2020 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "canary/workflow_test.go",
"chars": 5973,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/admin/interface.go",
"chars": 6820,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/admin/interface_mock.go",
"chars": 29886,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: interface.go\n//\n// Generated by this command:\n//\n//\tmockgen -packa"
},
{
"path": "client/clientBean.go",
"chars": 6425,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/clientBean_mock.go",
"chars": 6481,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: clientBean.go\n//\n// Generated by this command:\n//\n//\tmockgen -pack"
},
{
"path": "client/clientfactory.go",
"chars": 12218,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/frontend/interface.go",
"chars": 8654,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/frontend/interface_mock.go",
"chars": 42697,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: interface.go\n//\n// Generated by this command:\n//\n//\tmockgen -packa"
},
{
"path": "client/history/client.go",
"chars": 36185,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/history/client_test.go",
"chars": 55332,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/history/interface.go",
"chars": 8697,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/history/interface_mock.go",
"chars": 38728,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: interface.go\n//\n// Generated by this command:\n//\n//\tmockgen -packa"
},
{
"path": "client/history/peer_resolver.go",
"chars": 7106,
"preview": "// Copyright (c) 2021 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/history/peer_resolver_mock.go",
"chars": 4577,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: peer_resolver.go\n//\n// Generated by this command:\n//\n//\tmockgen -p"
},
{
"path": "client/history/peer_resolver_test.go",
"chars": 11859,
"preview": "// Copyright (c) 2021 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/matching/client.go",
"chars": 11975,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/matching/client_test.go",
"chars": 31960,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/interface.go",
"chars": 4127,
"preview": "// Copyright (c) 2017 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/matching/interface_mock.go",
"chars": 11799,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: interface.go\n//\n// Generated by this command:\n//\n//\tmockgen -packa"
},
{
"path": "client/matching/isolation_loadbalancer.go",
"chars": 4900,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/isolation_loadbalancer_test.go",
"chars": 9805,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/loadbalancer.go",
"chars": 4697,
"preview": "// Copyright (c) 2019 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/matching/loadbalancer_mock.go",
"chars": 11585,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: loadbalancer.go\n//\n// Generated by this command:\n//\n//\tmockgen -pa"
},
{
"path": "client/matching/loadbalancer_test.go",
"chars": 5984,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/multi_loadbalancer.go",
"chars": 4558,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/multi_loadbalancer_test.go",
"chars": 12997,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/partition_config_provider.go",
"chars": 10544,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/partition_config_provider_mock.go",
"chars": 6275,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: partition_config_provider.go\n//\n// Generated by this command:\n//\n/"
},
{
"path": "client/matching/partition_config_provider_test.go",
"chars": 11859,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/peer_resolver.go",
"chars": 3825,
"preview": "// Copyright (c) 2021 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/matching/peer_resolver_mock.go",
"chars": 2810,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: peer_resolver.go\n//\n// Generated by this command:\n//\n//\tmockgen -p"
},
{
"path": "client/matching/peer_resolver_test.go",
"chars": 2941,
"preview": "// Copyright (c) 2021 Uber Technologies, Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "client/matching/rr_loadbalancer.go",
"chars": 3951,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/rr_loadbalancer_test.go",
"chars": 9425,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/weighted_loadbalancer.go",
"chars": 8102,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/matching/weighted_loadbalancer_test.go",
"chars": 17422,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/sharddistributor/interface.go",
"chars": 2763,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/sharddistributor/interface_mock.go",
"chars": 5523,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: interface.go\n//\n// Generated by this command:\n//\n//\tmockgen -packa"
},
{
"path": "client/sharddistributorexecutor/executorinterface.go",
"chars": 2568,
"preview": "// The MIT License (MIT)\n\n// Copyright (c) 2017-2020 Uber Technologies Inc.\n\n// Permission is hereby granted, free of ch"
},
{
"path": "client/sharddistributorexecutor/executorinterface_mock.go",
"chars": 1984,
"preview": "// Code generated by MockGen. DO NOT EDIT.\n// Source: executorinterface.go\n//\n// Generated by this command:\n//\n//\tmockge"
},
{
"path": "client/templates/errorinjectors.tmpl",
"chars": 2127,
"preview": "import (\n\t\"context\"\n\n\t\"go.uber.org/yarpc\"\n\n\t\"github.com/uber/cadence/common/errors\"\n\t\"github.com/uber/cadence/common/log"
},
{
"path": "client/templates/grpc.tmpl",
"chars": 3044,
"preview": "{{$packagePath := (index .Vars \"path\")}}\n{{$package := (index .Vars \"package\")}}\n{{$prefix := (index .Vars \"prefix\")}}\ni"
}
]
// ... and 2594 more files (download for full content)
About this extraction
This page contains the full source code of the cadence-workflow/cadence GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2794 files (40.2 MB), approximately 10.7M tokens, and a symbol index with 56693 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.