Interface ActorClockActuator


public interface ActorClockActuator
Java interface for the broker's actor clock actuator (roughly mapping to the broker admin service). To instantiate this interface, you can use Feign; see of(String) as an example.

You can use one of of(String) or of(ZeebeBrokerNode) to create a new client to use for yourself.

Adding a new method is simple: simply define the input/output here as you normally would, and make sure to add the correct JSON encoding headers (`Accept` for the response type, `Content-Type` if there's a body to send). See LoggersActuator for a more complete example.

This actuator should only be used for testing purposes. To use it in a test class, requires the controllable clock to be enabled through configuration as such: `testStandaloneBroker.withProperty("zeebe.clock.controlled", true)`