Uses of Class
io.camunda.zeebe.qa.util.cluster.TestStandaloneBroker
Packages that use TestStandaloneBroker
-
Uses of TestStandaloneBroker in io.camunda.zeebe.qa.util.actuator
Methods in io.camunda.zeebe.qa.util.actuator with parameters of type TestStandaloneBrokerModifier and TypeMethodDescriptionstatic ActorClockActuatorActorClockActuator.of(TestStandaloneBroker node) Returns aActorClockActuatorinstance using the given node as upstream.static BrokerHealthActuatorBrokerHealthActuator.of(TestStandaloneBroker node) Returns aBrokerHealthActuatorinstance using the given node as upstream.static PartitionsActuatorPartitionsActuator.of(TestStandaloneBroker node) Returns aPartitionsActuatorinstance using the given node as upstream.static PrometheusActuatorPrometheusActuator.of(TestStandaloneBroker node) -
Uses of TestStandaloneBroker in io.camunda.zeebe.qa.util.cluster
Methods in io.camunda.zeebe.qa.util.cluster that return TestStandaloneBrokerModifier and TypeMethodDescriptionTestStandaloneBroker.self()TestStandaloneBroker.withBrokerConfig(Consumer<BrokerConfiguration.BrokerProperties> modifier) Modifies the broker configuration.TestStandaloneBroker.withExporter(String id, Consumer<ExporterCfg> modifier) Adds or replaces a new exporter with the given ID.TestStandaloneBroker.withGatewayConfig(Consumer<GatewayCfg> modifier) TestStandaloneBroker.withRecordingExporter(boolean useRecordingExporter) Enables/disables usage of the recording exporter usingRECORDING_EXPORTER_IDas its unique ID.TestStandaloneBroker.withWorkingDirectory(Path directory) Sets the broker's working directory, aka its data directory.Methods in io.camunda.zeebe.qa.util.cluster that return types with arguments of type TestStandaloneBrokerModifier and TypeMethodDescriptionTestCluster.brokers()Returns a map of the brokers in the cluster, where the keys are the broker's nodeId, and the values the broker containers.Method parameters in io.camunda.zeebe.qa.util.cluster with type arguments of type TestStandaloneBrokerModifier and TypeMethodDescriptionTestClusterBuilder.withBrokerConfig(BiConsumer<MemberId, TestStandaloneBroker> modifier) Sets the configuration function that will be executed in theTestClusterBuilder.build()method on each broker.TestClusterBuilder.withBrokerConfig(Consumer<TestStandaloneBroker> modifier) Sets the configuration function that will be executed in theTestClusterBuilder.build()method on each broker.Constructor parameters in io.camunda.zeebe.qa.util.cluster with type arguments of type TestStandaloneBrokerModifierConstructorDescriptionTestCluster(String name, int replicationFactor, int partitionsCount, Map<MemberId, TestStandaloneBroker> brokers, Map<MemberId, TestStandaloneGateway> gateways) Creates a new cluster from the given parameters.